18#ifndef itkGaborKernelFunction_h
19#define itkGaborKernelFunction_h
45template <
typename TRealValueType>
64 Evaluate(
const TRealValueType & u)
const override
66 TRealValueType parameter = itk::Math::sqr(u / this->
m_Sigma);
67 TRealValueType envelope = std::exp(TRealValueType{ -0.5 } * parameter);
72 return envelope * std::sin(phase);
75 return envelope * std::cos(phase);
80 itkSetMacro(Sigma, TRealValueType);
81 itkGetConstMacro(Sigma, TRealValueType);
85 itkSetMacro(Frequency, TRealValueType);
86 itkGetConstMacro(Frequency, TRealValueType);
90 itkSetMacro(PhaseOffset, TRealValueType);
91 itkGetConstMacro(PhaseOffset, TRealValueType);
96 itkSetMacro(CalculateImaginaryPart,
bool);
97 itkGetConstMacro(CalculateImaginaryPart,
bool);
98 itkBooleanMacro(CalculateImaginaryPart);
104 this->
m_Sigma = TRealValueType{ 1.0 };
114 os << indent <<
"Sigma: " << this->
GetSigma() << std::endl;
115 os << indent <<
"Frequency: " << this->
GetFrequency() << std::endl;
116 os << indent <<
"PhaseOffset: " << this->
GetPhaseOffset() << std::endl;
virtual bool GetCalculateImaginaryPart() const
TRealValueType m_PhaseOffset
SmartPointer< Self > Pointer
TRealValueType m_Frequency
KernelFunctionBase< TRealValueType > Superclass
~GaborKernelFunction() override=default
void PrintSelf(std::ostream &os, Indent indent) const override
bool m_CalculateImaginaryPart
TRealValueType Evaluate(const TRealValueType &u) const override
virtual TRealValueType GetFrequency() const
virtual TRealValueType GetPhaseOffset() const
virtual TRealValueType GetSigma() const
Control indentation during Print() invocation.
KernelFunctionBase()=default
virtual void PrintSelf(std::ostream &os, Indent indent) const
Implements transparent reference counting.
static constexpr double pi
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....