ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkGaussianDerivativeOperator.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 itkGaussianDerivativeOperator_h
19#define itkGaussianDerivativeOperator_h
20
21#include "itkGaussianOperator.h"
23
24#include <algorithm>
25
26namespace itk
27{
28
47// Define how to print enumeration
48extern ITKCommon_EXPORT std::ostream &
50
101template <typename TPixel, unsigned int VDimension = 2, typename TAllocator = NeighborhoodAllocator<TPixel>>
102class ITK_TEMPLATE_EXPORT GaussianDerivativeOperator : public NeighborhoodOperator<TPixel, VDimension, TAllocator>
103{
104public:
108
110 itkOverrideGetNameOfClassMacro(GaussianDerivativeOperator);
111
113
117
127 void
129 {
131 }
132 bool
134 {
136 }
137 itkBooleanMacro(NormalizeAcrossScale);
143 void
144 SetVariance(const double variance)
145 {
146 m_Variance = variance;
147 }
148 double
150 {
151 return m_Variance;
152 }
153
156 void
157 SetSpacing(const double spacing)
158 {
159 m_Spacing = spacing;
160 }
161 double
163 {
164 return m_Spacing;
165 }
166
171 void
172 SetMaximumError(const double maxerror)
173 {
174 constexpr double Min = 0.00001;
175 const double Max = 1.0 - Min;
176
177 m_MaximumError = std::clamp(maxerror, Min, Max);
178 }
179 double
181 {
182 return m_MaximumError;
183 }
184
190 void
191 SetMaximumKernelWidth(unsigned int n)
192 {
194 }
195 itkGetConstMacro(MaximumKernelWidth, unsigned int);
199 void
200 SetOrder(const unsigned int order)
201 {
202 m_Order = order;
203 }
204 unsigned int
205 GetOrder() const
206 {
207 return m_Order;
208 }
209
210 void
211 PrintSelf(std::ostream & os, Indent indent) const override;
212
213protected:
215 using typename Superclass::CoefficientVector;
216
219 static double
221
224 static double
226
229 static double
230 ModifiedBesselI(int, double);
231
235
237 void
238 Fill(const CoefficientVector & coeff) override
239 {
240 this->FillCenteredDirectional(coeff);
241 }
242
243private:
244 /* Methods for generations of the coefficients for a Gaussian
245 * operator of 0-order respecting the remaining parameters. */
246 CoefficientVector
248
251
253 double m_Variance{ 1.0 };
254
257 double m_MaximumError{ 0.005 };
258
262 unsigned int m_MaximumKernelWidth{ 30 };
263
265 unsigned int m_Order{ 1 };
266
268 double m_Spacing{ 1.0 };
269};
270
271} // namespace itk
272
273#ifndef ITK_MANUAL_INSTANTIATION
274# include "itkGaussianDerivativeOperator.hxx"
275#endif
276
277#endif
A NeighborhoodOperator for taking an n-th order derivative at a pixel.
GaussianDerivativeOperator class enum classes.
A NeighborhoodOperator whose coefficients are a one dimensional, discrete derivative Gaussian kernel.
CoefficientVector GenerateCoefficients() override
static double ModifiedBesselI0(double)
GaussianOperator< TPixel, VDimension, TAllocator > GaussianOperatorType
static double ModifiedBesselI(int, double)
CoefficientVector GenerateGaussianCoefficients() const
NeighborhoodOperator< TPixel, VDimension, TAllocator > Superclass
void PrintSelf(std::ostream &os, Indent indent) const override
void Fill(const CoefficientVector &coeff) override
DerivativeOperator< TPixel, VDimension, TAllocator > DerivativeOperatorType
static double ModifiedBesselI1(double)
GaussianDerivativeOperatorEnums::InterpolationMode InterpolationModeEnum
A NeighborhoodOperator whose coefficients are a one dimensional, discrete Gaussian kernel.
Control indentation during Print() invocation.
Definition itkIndent.h:50
Virtual class that defines a common interface to all neighborhood operator subtypes.
virtual void FillCenteredDirectional(const CoefficientVector &)
typename std::vector< PixelRealType > CoefficientVector
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
ITKCommon_EXPORT std::ostream & operator<<(std::ostream &out, typename AnatomicalOrientation::CoordinateEnum value)