ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkDiscreteGaussianDerivativeImageFunction.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 itkDiscreteGaussianDerivativeImageFunction_h
19#define itkDiscreteGaussianDerivativeImageFunction_h
20
23
24namespace itk
25{
46template <typename TInputImage, typename TOutput = double>
47class ITK_TEMPLATE_EXPORT DiscreteGaussianDerivativeImageFunction : public ImageFunction<TInputImage, TOutput, TOutput>
48{
49public:
52
55
59
61 itkNewMacro(Self);
62
64 itkOverrideGetNameOfClassMacro(DiscreteGaussianDerivativeImageFunction);
65
67 using typename Superclass::InputImageType;
68 using typename Superclass::InputPixelType;
69 using typename Superclass::IndexType;
70 using typename Superclass::IndexValueType;
72 using typename Superclass::PointType;
73
75 static constexpr unsigned int ImageDimension2 = InputImageType::ImageDimension;
76
78 using typename Superclass::OutputType;
79
83
85
88
91
96
98#if !defined(ITK_LEGACY_REMOVE)
100 static constexpr InterpolationModeEnum NearestNeighbourInterpolation =
101 InterpolationModeEnum::NearestNeighbourInterpolation;
102 static constexpr InterpolationModeEnum LinearInterpolation = InterpolationModeEnum::LinearInterpolation;
103#endif
104
105public:
108 Evaluate(const PointType & point) const override;
109
112 EvaluateAtIndex(const IndexType & index) const override;
113
116 EvaluateAtContinuousIndex(const ContinuousIndexType & index) const override;
117
125 itkSetMacro(Variance, VarianceArrayType);
126 itkGetConstMacro(Variance, const VarianceArrayType);
127 itkSetVectorMacro(Variance, double, VarianceArrayType::Length);
129
131 virtual void
132 SetVariance(double variance)
133 {
134 m_Variance.Fill(variance);
135 this->Modified();
136 }
137
141 void
142 SetSigma(const double sigma)
143 {
144 SetVariance(sigma * sigma);
145 }
146
154 itkSetClampMacro(MaximumError, double, 0.00001, 0.99999);
155 itkGetConstMacro(MaximumError, double);
157
160 itkSetMacro(Order, OrderArrayType);
161 itkGetConstMacro(Order, const OrderArrayType);
162 itkSetVectorMacro(Order, unsigned int, OrderArrayType::Length);
164
166 virtual void
167 SetOrder(unsigned int order)
168 {
169 m_Order.Fill(order);
170 this->Modified();
171 }
172
177 itkSetMacro(NormalizeAcrossScale, bool);
178 itkGetConstMacro(NormalizeAcrossScale, bool);
179 itkBooleanMacro(NormalizeAcrossScale);
181
184 itkSetMacro(UseImageSpacing, bool);
185 itkGetConstMacro(UseImageSpacing, bool);
186 itkBooleanMacro(UseImageSpacing);
188
194 itkSetMacro(MaximumKernelWidth, unsigned int);
195 itkGetConstMacro(MaximumKernelWidth, unsigned int);
197
200 itkSetEnumMacro(InterpolationMode, InterpolationModeEnum);
201 itkGetEnumMacro(InterpolationMode, InterpolationModeEnum);
203
208 void
209 SetInputImage(const InputImageType * ptr) override;
210
214 virtual void
219
220protected:
223
225
226 void
228 {}
229 void
230 PrintSelf(std::ostream & os, Indent indent) const override;
231
232 void
234
235private:
238
241
244 double m_MaximumError{ 0.005 };
245
249 unsigned int m_MaximumKernelWidth{ 30 };
250
253
257
260
263
265 bool m_UseImageSpacing{ true };
266
268 InterpolationModeEnum m_InterpolationMode{ InterpolationModeEnum::NearestNeighbourInterpolation };
269};
270} // namespace itk
271
272#ifndef ITK_MANUAL_INSTANTIATION
273# include "itkDiscreteGaussianDerivativeImageFunction.hxx"
274#endif
275
276#endif
virtual void SetVariance(VarianceArrayType _arg)
NeighborhoodOperatorImageFunction< InputImageType, TOutput > OperatorImageFunctionType
FixedArray< GaussianDerivativeOperatorType, Self::ImageDimension2 > GaussianDerivativeOperatorArrayType
void PrintSelf(std::ostream &os, Indent indent) const override
FixedArray< unsigned int, Self::ImageDimension2 > OrderArrayType
GaussianDerivativeOperatorEnums::InterpolationMode InterpolationModeEnum
itk::GaussianDerivativeOperator< TOutput, Self::ImageDimension2 > GaussianDerivativeOperatorType
~DiscreteGaussianDerivativeImageFunction() override=default
typename OperatorImageFunctionType::Pointer OperatorImageFunctionPointer
OutputType Evaluate(const PointType &point) const override
void SetInputImage(const InputImageType *ptr) override
OutputType EvaluateAtIndex(const IndexType &index) const override
OutputType EvaluateAtContinuousIndex(const ContinuousIndexType &index) const override
Simulate a standard C array with copy semantics.
A NeighborhoodOperator whose coefficients are a one dimensional, discrete derivative Gaussian kernel.
typename InputImageType::PixelType InputPixelType
typename InputImageType::IndexValueType IndexValueType
Point< TOutput, Self::ImageDimension > PointType
ContinuousIndex< TOutput, Self::ImageDimension > ContinuousIndexType
Control indentation during Print() invocation.
Definition itkIndent.h:50
Compute the convolution of a neighborhood operator with the image at a specific location in space,...
A light-weight container object for storing an N-dimensional neighborhood of values.
virtual void Modified() const
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....