ITK
4.3.0
Insight Segmentation and Registration Toolkit
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
ITK
Modules
Core
Common
include
itkVectorNeighborhoodInnerProduct.h
Go to the documentation of this file.
1
/*=========================================================================
2
*
3
* Copyright Insight Software Consortium
4
*
5
* Licensed under the Apache License, Version 2.0 (the "License");
6
* you may not use this file except in compliance with the License.
7
* You may obtain a copy of the License at
8
*
9
* http://www.apache.org/licenses/LICENSE-2.0.txt
10
*
11
* Unless required by applicable law or agreed to in writing, software
12
* distributed under the License is distributed on an "AS IS" BASIS,
13
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
* See the License for the specific language governing permissions and
15
* limitations under the License.
16
*
17
*=========================================================================*/
18
#ifndef __itkVectorNeighborhoodInnerProduct_h
19
#define __itkVectorNeighborhoodInnerProduct_h
20
21
#include "
itkNeighborhoodIterator.h
"
22
#include "
itkVector.h
"
23
#include "
itkConstSliceIterator.h
"
24
#include "
itkImageBoundaryCondition.h
"
25
26
namespace
itk
27
{
44
template
<
class
TImage >
45
class
ITK_EXPORT
VectorNeighborhoodInnerProduct
46
{
47
public
:
49
typedef
VectorNeighborhoodInnerProduct
Self
;
50
51
itkStaticConstMacro(ImageDimension,
unsigned
int
, TImage::ImageDimension);
52
55
typedef
typename
TImage::PixelType
PixelType
;
56
typedef
typename
PixelType::ValueType
ScalarValueType
;
57
typedef
Neighborhood< PixelType, itkGetStaticConstMacro(ImageDimension) >
58
NeighborhoodType
;
59
62
itkStaticConstMacro(VectorDimension,
unsigned
int
,
63
PixelType::Dimension);
64
66
typedef
Neighborhood
<
ScalarValueType
,
67
itkGetStaticConstMacro(ImageDimension) >
OperatorType
;
68
70
PixelType
operator()(
const
std::slice & s,
71
const
ConstNeighborhoodIterator< TImage >
& it,
72
const
OperatorType
& op)
const
;
73
75
PixelType
operator()(
const
ConstNeighborhoodIterator< TImage >
& it,
76
const
OperatorType
& op)
const
77
{
78
return
this->operator()(std::slice(0, it.
Size
(), 1), it, op);
79
}
80
81
PixelType operator()(
const
std::slice & s,
const
NeighborhoodType & N,
82
const
OperatorType & op)
const
;
83
};
84
}
// end namespace itk
85
86
#ifndef ITK_MANUAL_INSTANTIATION
87
#include "itkVectorNeighborhoodInnerProduct.hxx"
88
#endif
89
90
#endif
91
Generated on Sun Dec 9 2012 01:30:37 for ITK by
1.8.2