ITK  5.2.0
Insight Toolkit
itkSumOfSquaresImageFunction.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright NumFOCUS
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 itkSumOfSquaresImageFunction_h
19 #define itkSumOfSquaresImageFunction_h
20 
21 #include "itkImageFunction.h"
23 #include "itkNumericTraits.h"
24 #include "itkOffset.h"
25 
26 #include <vector>
27 
28 namespace itk
29 {
46 template <typename TInputImage, typename TCoordRep = float>
47 class ITK_TEMPLATE_EXPORT SumOfSquaresImageFunction
48  : public ImageFunction<TInputImage, typename NumericTraits<typename TInputImage::PixelType>::RealType, TCoordRep>
49 {
50 public:
51  ITK_DISALLOW_COPY_AND_MOVE(SumOfSquaresImageFunction);
52 
55  using Superclass =
57 
60 
63 
65  itkNewMacro(Self);
66 
68  using InputImageType = TInputImage;
69 
71  using typename Superclass::InputPixelType;
72 
74  using OutputType = typename Superclass::OutputType;
75 
77  using IndexType = typename Superclass::IndexType;
78 
80  using ContinuousIndexType = typename Superclass::ContinuousIndexType;
81 
83  using PointType = typename Superclass::PointType;
84 
87 
89  static constexpr unsigned int ImageDimension = InputImageType::ImageDimension;
90 
93 
95  RealType
96  EvaluateAtIndex(const IndexType & index) const override;
97 
99  RealType
100  Evaluate(const PointType & point) const override
101  {
102  IndexType index;
103 
104  this->ConvertPointToNearestIndex(point, index);
105  return this->EvaluateAtIndex(index);
106  }
107 
108  RealType
109  EvaluateAtContinuousIndex(const ContinuousIndexType & cindex) const override
110  {
111  IndexType index;
112 
113  this->ConvertContinuousIndexToNearestIndex(cindex, index);
114  return this->EvaluateAtIndex(index);
115  }
116 
119  itkGetConstReferenceMacro(NeighborhoodRadius, unsigned int);
120 
121  void
122  SetNeighborhoodRadius(unsigned int radius)
123  {
124  m_NeighborhoodOffsets = GenerateRectangularImageNeighborhoodOffsets(ImageSizeType::Filled(radius));
125  m_NeighborhoodRadius = radius;
126  m_NeighborhoodSize = m_NeighborhoodOffsets.size();
127  }
128 
129  itkGetConstReferenceMacro(NeighborhoodSize, unsigned int);
130 
131 protected:
133  ~SumOfSquaresImageFunction() override = default;
134  void
135  PrintSelf(std::ostream & os, Indent indent) const override;
136 
137 private:
138  unsigned int m_NeighborhoodRadius;
139  unsigned int m_NeighborhoodSize;
140 
141  std::vector<Offset<ImageDimension>> m_NeighborhoodOffsets{ GenerateRectangularImageNeighborhoodOffsets(
142  ImageSizeType::Filled(1)) };
143 };
144 } // end namespace itk
145 
146 #ifndef ITK_MANUAL_INSTANTIATION
147 # include "itkSumOfSquaresImageFunction.hxx"
148 #endif
149 
150 #endif
itkImageFunction.h
itkImageNeighborhoodOffsets.h
itk::SumOfSquaresImageFunction::m_NeighborhoodRadius
unsigned int m_NeighborhoodRadius
Definition: itkSumOfSquaresImageFunction.h:138
itk::SumOfSquaresImageFunction::m_NeighborhoodSize
unsigned int m_NeighborhoodSize
Definition: itkSumOfSquaresImageFunction.h:139
itkOffset.h
itk::GTest::TypedefsAndConstructors::Dimension2::PointType
ImageBaseType::PointType PointType
Definition: itkGTestTypedefsAndConstructors.h:51
itk::GTest::TypedefsAndConstructors::Dimension2::SizeType
ImageBaseType::SizeType SizeType
Definition: itkGTestTypedefsAndConstructors.h:49
itk::SmartPointer< Self >
itk::SumOfSquaresImageFunction::PointType
typename Superclass::PointType PointType
Definition: itkSumOfSquaresImageFunction.h:83
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
itk::SumOfSquaresImageFunction::RealType
typename NumericTraits< typename InputImageType::PixelType >::RealType RealType
Definition: itkSumOfSquaresImageFunction.h:92
itk::SumOfSquaresImageFunction::OutputType
typename Superclass::OutputType OutputType
Definition: itkSumOfSquaresImageFunction.h:74
itk::GTest::TypedefsAndConstructors::Dimension2::IndexType
ImageBaseType::IndexType IndexType
Definition: itkGTestTypedefsAndConstructors.h:50
itk::ImageFunction
Evaluates a function of an image at specified position.
Definition: itkImageFunction.h:55
itk::LightObject
Light weight base class for most itk classes.
Definition: itkLightObject.h:59
itk::SumOfSquaresImageFunction::SetNeighborhoodRadius
void SetNeighborhoodRadius(unsigned int radius)
Definition: itkSumOfSquaresImageFunction.h:122
itk::SumOfSquaresImageFunction::Evaluate
RealType Evaluate(const PointType &point) const override
Definition: itkSumOfSquaresImageFunction.h:100
itk::GenerateRectangularImageNeighborhoodOffsets
std::vector< Offset< VImageDimension > > GenerateRectangularImageNeighborhoodOffsets(const Size< VImageDimension > &radius)
Definition: itkImageNeighborhoodOffsets.h:43
itk::SumOfSquaresImageFunction
Calculate the sum of squares in the neighborhood of a pixel.
Definition: itkSumOfSquaresImageFunction.h:47
itk::SumOfSquaresImageFunction::InputImageType
TInputImage InputImageType
Definition: itkSumOfSquaresImageFunction.h:68
itk::SumOfSquaresImageFunction::EvaluateAtContinuousIndex
RealType EvaluateAtContinuousIndex(const ContinuousIndexType &cindex) const override
Definition: itkSumOfSquaresImageFunction.h:109
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itkNumericTraits.h
itk::SumOfSquaresImageFunction::ContinuousIndexType
typename Superclass::ContinuousIndexType ContinuousIndexType
Definition: itkSumOfSquaresImageFunction.h:80
itk::NumericTraits::RealType
double RealType
Definition: itkNumericTraits.h:84
itk::SumOfSquaresImageFunction::IndexType
typename Superclass::IndexType IndexType
Definition: itkSumOfSquaresImageFunction.h:77
itk::SumOfSquaresImageFunction::ImageSizeType
typename InputImageType::SizeType ImageSizeType
Definition: itkSumOfSquaresImageFunction.h:86