ITK  4.8.0
Insight Segmentation and Registration Toolkit
itkNeighborhoodInnerProduct.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 itkNeighborhoodInnerProduct_h
19 #define itkNeighborhoodInnerProduct_h
20 
22 #include "itkConstSliceIterator.h"
24 
25 namespace itk
26 {
47 template< typename TImage, typename TOperator = typename TImage::PixelType, typename TComputation = TOperator >
49 {
50 public:
53 
55  typedef typename TImage::PixelType ImagePixelType;
56  typedef TOperator OperatorPixelType;
57  typedef TComputation OutputPixelType;
58 
60  itkStaticConstMacro(ImageDimension, unsigned int, TImage::ImageDimension);
61 
64  itkGetStaticConstMacro(ImageDimension) > OperatorType;
65 
67  itkGetStaticConstMacro(ImageDimension) > NeighborhoodType;
68 
70  OutputPixelType operator()(const std::slice & s,
72  const OperatorType & op) const;
73 
75  const OperatorType & op) const
76  {
77  return this->operator()(std::slice(0, it.Size(), 1), it, op);
78  }
79 
80  OutputPixelType operator()(const std::slice & s,
81  const NeighborhoodType & N,
82  const OperatorType & op) const;
83 
85  const OperatorType & op) const
86  {
87  return this->operator()(std::slice(0, N.Size(), 1), N, op);
88  }
89 };
90 } // end namespace itk
91 
92 #ifndef ITK_MANUAL_INSTANTIATION
93 #include "itkNeighborhoodInnerProduct.hxx"
94 #endif
95 
96 /*
97 #ifndef ITK_MANUAL_INSTANTIATION
98 #include "itkNeighborhoodInnerProduct.hxx"
99 #endif
100 */
101 
102 #endif
Defines the inner product operation between an Neighborhood and a NeighborhoodOperator.
A light-weight container object for storing an N-dimensional neighborhood of values.
OutputPixelType operator()(const ConstNeighborhoodIterator< TImage > &it, const OperatorType &op) const
NeighborIndexType Size() const
Neighborhood< ImagePixelType, itkGetStaticConstMacro(ImageDimension) > NeighborhoodType
OutputPixelType operator()(const NeighborhoodType &N, const OperatorType &op) const
static const unsigned int ImageDimension
Neighborhood< OperatorPixelType, itkGetStaticConstMacro(ImageDimension) > OperatorType
OutputPixelType operator()(const std::slice &s, const ConstNeighborhoodIterator< TImage > &it, const OperatorType &op) const