ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkScatterMatrixImageFunction.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 itkScatterMatrixImageFunction_h
19 #define itkScatterMatrixImageFunction_h
20 
21 #include "itkImageFunction.h"
22 #include "itkNumericTraits.h"
23 
24 namespace itk
25 {
44 template< typename TInputImage, typename TCoordRep = float >
45 class ITK_TEMPLATE_EXPORT ScatterMatrixImageFunction:
46  public ImageFunction< TInputImage,
47  vnl_matrix<
48  typename NumericTraits< typename TInputImage::PixelType::ValueType >::RealType >,
49  TCoordRep >
50 {
51 public:
52 
55  typedef ImageFunction< TInputImage,
56  vnl_matrix<
58  TCoordRep > Superclass;
59 
62 
65 
67  itkNewMacro(Self);
68 
70  typedef TInputImage InputImageType;
71 
73  typedef typename Superclass::OutputType OutputType;
74 
76  typedef typename Superclass::IndexType IndexType;
77 
79  typedef typename Superclass::ContinuousIndexType ContinuousIndexType;
80 
82  typedef typename Superclass::PointType PointType;
83 
85  itkStaticConstMacro(ImageDimension, unsigned int,
86  InputImageType::ImageDimension);
87 
89  typedef vnl_matrix<
92 
94  virtual RealType EvaluateAtIndex(const IndexType & index) const ITK_OVERRIDE;
95 
97  virtual RealType Evaluate(const PointType & point) const ITK_OVERRIDE
98  {
99  IndexType index;
100 
101  this->ConvertPointToNearestIndex(point, index);
102  return this->EvaluateAtIndex(index);
103  }
104 
106  const ContinuousIndexType & cindex) const ITK_OVERRIDE
107  {
108  IndexType index;
109 
110  this->ConvertContinuousIndexToNearestIndex(cindex, index);
111  return this->EvaluateAtIndex(index);
112  }
113 
116  itkSetMacro(NeighborhoodRadius, unsigned int);
117  itkGetConstReferenceMacro(NeighborhoodRadius, unsigned int);
119 
120 protected:
122  ~ScatterMatrixImageFunction() ITK_OVERRIDE {}
123  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
124 
125 private:
126  ITK_DISALLOW_COPY_AND_ASSIGN(ScatterMatrixImageFunction);
127 
128  unsigned int m_NeighborhoodRadius;
129 };
130 } // end namespace itk
131 
132 #ifndef ITK_MANUAL_INSTANTIATION
133 #include "itkScatterMatrixImageFunction.hxx"
134 #endif
135 
136 #endif
Superclass::ContinuousIndexType ContinuousIndexType
Calculate the scatter matrix in the neighborhood of a pixel in a Vector image.
Light weight base class for most itk classes.
virtual RealType EvaluateAtContinuousIndex(const ContinuousIndexType &cindex) const override
virtual RealType Evaluate(const PointType &point) const override
vnl_matrix< typename NumericTraits< typename InputImageType::PixelType::ValueType >::RealType > RealType
Control indentation during Print() invocation.
Definition: itkIndent.h:49
Define additional traits for native types such as int or float.
ImageFunction< TInputImage, vnl_matrix< typename NumericTraits< typename TInputImage::PixelType::ValueType >::RealType >, TCoordRep > Superclass
Evaluates a function of an image at specified position.