ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkGaussianOperator.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 itkGaussianOperator_h
19#define itkGaussianOperator_h
20
22#include <cmath>
23namespace itk
24{
66template <typename TPixel, unsigned int VDimension = 2, typename TAllocator = NeighborhoodAllocator<TPixel>>
67class ITK_TEMPLATE_EXPORT GaussianOperator : public NeighborhoodOperator<TPixel, VDimension, TAllocator>
68{
69public:
73
75 itkOverrideGetNameOfClassMacro(GaussianOperator);
76
78 void
79 SetVariance(const double variance)
80 {
81 m_Variance = variance;
82 }
83
88 void
89 SetMaximumError(const double max_error)
90 {
91 if (max_error >= 1 || max_error <= 0)
92 {
93 itkExceptionMacro("Maximum Error Must be in the range [ 0.0 , 1.0 ]");
94 }
95
96 m_MaximumError = max_error;
97 }
98
100 double
102 {
103 return m_Variance;
104 }
105
110 double
112 {
113 return m_MaximumError;
114 }
115
120 void
121 SetMaximumKernelWidth(unsigned int n)
122 {
124 }
125
127 unsigned int
129 {
131 }
132
133 void
134 PrintSelf(std::ostream & os, Indent indent) const override
135 {
136 Superclass::PrintSelf(os, indent);
137
138 os << indent << "Variance: " << m_Variance << std::endl;
139 os << indent << "MaximumError: " << m_MaximumError << std::endl;
140 os << indent << "MaximumKernelWidth: " << m_MaximumKernelWidth << std::endl;
141 }
142
146 bool
147 GetDebug() const
148 {
149 return m_Debug;
150 }
151
152 void
153 DebugOn() const
154 {
155 m_Debug = true;
156 }
157
158 void
159 DebugOff() const
160 {
161 m_Debug = false;
162 }
163
164 void
165 SetDebug(bool debugFlag) const
166 {
167 m_Debug = debugFlag;
168 }
169
170public:
173 double
175
178 double
180
183 double
184 ModifiedBesselI(int, double);
185
186protected:
188 using typename Superclass::CoefficientVector;
189
193
195 void
196 Fill(const CoefficientVector & coeff) override
197 {
198 this->FillCenteredDirectional(coeff);
199 }
200
201private:
203 double m_Variance{ 1 };
204
207 double m_MaximumError{ .01 };
208
212 unsigned int m_MaximumKernelWidth{ 30 };
213
215 mutable bool m_Debug{ false };
216};
217} // namespace itk
218
219#ifndef ITK_MANUAL_INSTANTIATION
220# include "itkGaussianOperator.hxx"
221#endif
222
223#endif
A NeighborhoodOperator whose coefficients are a one dimensional, discrete Gaussian kernel.
double ModifiedBesselI1(double)
double ModifiedBesselI0(double)
void SetMaximumError(const double max_error)
void SetMaximumKernelWidth(unsigned int n)
double ModifiedBesselI(int, double)
void Fill(const CoefficientVector &coeff) override
void SetVariance(const double variance)
void PrintSelf(std::ostream &os, Indent indent) const override
unsigned int GetMaximumKernelWidth() const
void SetDebug(bool debugFlag) const
CoefficientVector GenerateCoefficients() override
NeighborhoodOperator< TPixel, VDimension, TAllocator > Superclass
typename std::vector< PixelRealType > CoefficientVector
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 &)
void PrintSelf(std::ostream &os, Indent indent) const override
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....