ITK  5.4.0
Insight Toolkit
itkDiscreteHessianGaussianImageFunction.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  * https://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 itkDiscreteHessianGaussianImageFunction_h
19 #define itkDiscreteHessianGaussianImageFunction_h
20 
24 
25 namespace itk
26 {
45 template <typename TInputImage, typename TOutput = double>
46 class ITK_TEMPLATE_EXPORT DiscreteHessianGaussianImageFunction
47  : public ImageFunction<TInputImage, SymmetricSecondRankTensor<TOutput, TInputImage::ImageDimension>, TOutput>
48 {
49 public:
50 
53 
55  using Superclass =
57 
61 
63  itkNewMacro(Self);
64 
66  itkOverrideGetNameOfClassMacro(DiscreteHessianGaussianImageFunction);
67 
69  using typename Superclass::InputImageType;
70  using typename Superclass::InputPixelType;
71  using typename Superclass::IndexType;
72  using typename Superclass::IndexValueType;
73  using typename Superclass::ContinuousIndexType;
74  using typename Superclass::PointType;
75 
77  static constexpr unsigned int ImageDimension2 = InputImageType::ImageDimension;
78 
81  using typename Superclass::OutputType;
82 
84 
86 
90 
92 
95  using KernelArrayType = FixedArray<KernelType, Self::ImageDimension2 *(Self::ImageDimension2 + 1) / 2>;
96 
101 
103 #if !defined(ITK_LEGACY_REMOVE)
104 
105  static constexpr InterpolationModeEnum NearestNeighbourInterpolation =
106  InterpolationModeEnum::NearestNeighbourInterpolation;
107  static constexpr InterpolationModeEnum LinearInterpolation = InterpolationModeEnum::LinearInterpolation;
108 #endif
109 
110 public:
112  OutputType
113  Evaluate(const PointType & point) const override;
114 
116  OutputType
117  EvaluateAtIndex(const IndexType & index) const override;
118 
120  OutputType
121  EvaluateAtContinuousIndex(const ContinuousIndexType & index) const override;
122 
127  itkSetMacro(Variance, VarianceArrayType);
128  itkGetConstMacro(Variance, const VarianceArrayType);
129  itkSetVectorMacro(Variance, double, VarianceArrayType::Length);
133  virtual void
134  SetVariance(double variance)
135  {
136  m_Variance.Fill(variance);
137  this->Modified();
138  }
143  void
144  SetSigma(const double sigma)
145  {
146  SetVariance(sigma * sigma);
147  }
148 
154  itkSetClampMacro(MaximumError, double, 0.00001, 0.99999);
155  itkGetConstMacro(MaximumError, double);
161  itkSetMacro(NormalizeAcrossScale, bool);
162  itkGetConstMacro(NormalizeAcrossScale, bool);
163  itkBooleanMacro(NormalizeAcrossScale);
167  itkSetMacro(UseImageSpacing, bool);
168  itkGetConstMacro(UseImageSpacing, bool);
169  itkBooleanMacro(UseImageSpacing);
176  itkSetMacro(MaximumKernelWidth, unsigned int);
177  itkGetConstMacro(MaximumKernelWidth, unsigned int);
181  itkSetEnumMacro(InterpolationMode, InterpolationModeEnum);
182  itkGetEnumMacro(InterpolationMode, InterpolationModeEnum);
189  void
190  SetInputImage(const InputImageType * ptr) override;
191 
194  virtual void
196  {
197  RecomputeGaussianKernel();
198  }
199 
200 protected:
203 
204  ~DiscreteHessianGaussianImageFunction() override = default;
205 
206  void
207  operator=(const Self &)
208  {}
209  void
210  PrintSelf(std::ostream & os, Indent indent) const override;
211 
212  void
213  RecomputeGaussianKernel();
214 
215 private:
217  VarianceArrayType m_Variance{};
218 
221  double m_MaximumError{ 0.005 };
222 
226  unsigned int m_MaximumKernelWidth{ 30 };
227 
232  mutable GaussianDerivativeOperatorArrayType m_OperatorArray{};
233 
237  KernelArrayType m_KernelArray{};
238 
240  OperatorImageFunctionPointer m_OperatorImageFunction{};
241 
243  bool m_NormalizeAcrossScale{ true };
244 
246  bool m_UseImageSpacing{ true };
247 
249  InterpolationModeEnum m_InterpolationMode{ InterpolationModeEnum::NearestNeighbourInterpolation };
250 };
251 } // namespace itk
252 
253 #ifndef ITK_MANUAL_INSTANTIATION
254 # include "itkDiscreteHessianGaussianImageFunction.hxx"
255 #endif
256 
257 #endif
Pointer
SmartPointer< Self > Pointer
Definition: itkAddImageFilter.h:93
itk::ImageFunction< TInputImage, SymmetricSecondRankTensor< TOutput, TInputImage::ImageDimension >, TOutput >::IndexType
typename InputImageType::IndexType IndexType
Definition: itkImageFunction.h:90
itk::GTest::TypedefsAndConstructors::Dimension2::PointType
ImageBaseType::PointType PointType
Definition: itkGTestTypedefsAndConstructors.h:51
itk::DiscreteHessianGaussianImageFunction::DiscreteHessianGaussianImageFunction
DiscreteHessianGaussianImageFunction(const Self &)
Definition: itkDiscreteHessianGaussianImageFunction.h:202
itk::Neighborhood< TOutput, Self::ImageDimension2 >
InterpolationMode
itk::SmartPointer< Self >
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
itk::GaussianDerivativeOperatorEnums::InterpolationMode
InterpolationMode
Definition: itkGaussianDerivativeOperator.h:43
itk::IndexValueType
long IndexValueType
Definition: itkIntTypes.h:90
itk::SymmetricSecondRankTensor
Represent a symmetric tensor of second rank.
Definition: itkSymmetricSecondRankTensor.h:75
itk::GTest::TypedefsAndConstructors::Dimension2::IndexType
ImageBaseType::IndexType IndexType
Definition: itkGTestTypedefsAndConstructors.h:50
itk::DiscreteHessianGaussianImageFunction::Initialize
virtual void Initialize()
Definition: itkDiscreteHessianGaussianImageFunction.h:195
itk::DiscreteHessianGaussianImageFunction::OperatorImageFunctionPointer
typename OperatorImageFunctionType::Pointer OperatorImageFunctionPointer
Definition: itkDiscreteHessianGaussianImageFunction.h:100
itk::DiscreteHessianGaussianImageFunction::operator=
void operator=(const Self &)
Definition: itkDiscreteHessianGaussianImageFunction.h:207
itk::ImageFunction
Evaluates a function of an image at specified position.
Definition: itkImageFunction.h:55
itk::DiscreteHessianGaussianImageFunction::SetSigma
void SetSigma(const double sigma)
Definition: itkDiscreteHessianGaussianImageFunction.h:144
itk::LightObject
Light weight base class for most itk classes.
Definition: itkLightObject.h:55
itkSymmetricSecondRankTensor.h
itk::point
*par Constraints *The filter requires an image with at least two dimensions and a vector *length of at least The theory supports extension to scalar but *the implementation of the itk vector classes do not **The template parameter TRealType must be floating point(float or double) or *a user-defined "real" numerical type with arithmetic operations defined *sufficient to compute derivatives. **\par Performance *This filter will automatically multithread if run with *SetUsePrincipleComponents
itkGaussianDerivativeOperator.h
itk::DiscreteHessianGaussianImageFunction::SetVariance
virtual void SetVariance(double variance)
Definition: itkDiscreteHessianGaussianImageFunction.h:134
itk::NeighborhoodOperatorImageFunction
Compute the convolution of a neighborhood operator with the image at a specific location in space,...
Definition: itkNeighborhoodOperatorImageFunction.h:41
itk::FixedArray< double, Self::ImageDimension2 >
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::ContinuousIndex< TOutput, Self::ImageDimension >
itk::DiscreteHessianGaussianImageFunction
Compute the Hessian Gaussian of an image at a specific location in space by calculating discrete seco...
Definition: itkDiscreteHessianGaussianImageFunction.h:46
itkNeighborhoodOperatorImageFunction.h
itk::Point
A templated class holding a geometric point in n-Dimensional space.
Definition: itkPoint.h:53
itk::GaussianDerivativeOperator
A NeighborhoodOperator whose coefficients are a one dimensional, discrete derivative Gaussian kernel.
Definition: itkGaussianDerivativeOperator.h:106