18#ifndef itkBSplineKernelFunction_h
19#define itkBSplineKernelFunction_h
42template <
unsigned int VSplineOrder = 3,
typename TRealValueType =
double>
73 Evaluate(
const TRealValueType & u)
const override
86 os << indent <<
"SplineOrder: " <<
SplineOrder << std::endl;
93 template <
unsigned int>
98 static inline TRealValueType
99 Evaluate(
const Dispatch<0> &,
const TRealValueType & u)
102 if (absValue < TRealValueType{ 0.5 })
104 return TRealValueType{ 1.0 };
108 return TRealValueType{ 0.5 };
112 return TRealValueType{ 0.0 };
117 static inline TRealValueType
118 Evaluate(
const Dispatch<1> &,
const TRealValueType & u)
121 if (absValue < TRealValueType{ 1.0 })
123 return TRealValueType{ 1.0 } - absValue;
126 return TRealValueType{ 0.0 };
130 static inline TRealValueType
131 Evaluate(
const Dispatch<2> &,
const TRealValueType & u)
134 if (absValue < TRealValueType{ 0.5 })
136 const TRealValueType sqrValue = itk::Math::sqr(absValue);
137 return TRealValueType{ 0.75 } - sqrValue;
139 if (absValue < TRealValueType{ 1.5 })
141 const TRealValueType sqrValue = itk::Math::sqr(absValue);
143 return (TRealValueType{ 9.0 } - TRealValueType{ 12.0 } * absValue + TRealValueType{ 4.0 } * sqrValue) *
144 TRealValueType{ 0.125 };
148 return TRealValueType{ 0.0 };
153 static inline TRealValueType
154 Evaluate(
const Dispatch<3> &,
const TRealValueType & u)
157 if (absValue < TRealValueType{ 1.0 })
159 const TRealValueType sqrValue = itk::Math::sqr(absValue);
160 return (TRealValueType{ 4.0 } - TRealValueType{ 6.0 } * sqrValue + TRealValueType{ 3.0 } * sqrValue * absValue) /
161 TRealValueType{ 6.0 };
163 if (absValue < TRealValueType{ 2.0 })
165 const TRealValueType sqrValue = itk::Math::sqr(absValue);
166 return (TRealValueType{ 8.0 } - TRealValueType{ 12.0 } * absValue + TRealValueType{ 6.0 } * sqrValue -
167 sqrValue * absValue) /
168 TRealValueType{ 6.0 };
172 return TRealValueType{ 0.0 };
177 static inline TRealValueType
178 Evaluate(
const DispatchBase &,
const TRealValueType &)
180 itkGenericExceptionMacro(
"Evaluate not implemented for spline order " <<
SplineOrder);
KernelFunctionBase< TRealValueType > Superclass
static TRealValueType FastEvaluate(const TRealValueType u)
TRealValueType Evaluate(const TRealValueType &u) const override
~BSplineKernelFunction() override=default
static TRealValueType Evaluate(const Dispatch< 1 > &, const TRealValueType &u)
BSplineKernelFunction()=default
static constexpr unsigned int SplineOrder
static TRealValueType Evaluate(const Dispatch< 3 > &, const TRealValueType &u)
SmartPointer< Self > Pointer
static TRealValueType Evaluate(const DispatchBase &, const TRealValueType &)
BSplineKernelFunction Self
static TRealValueType Evaluate(const Dispatch< 2 > &, const TRealValueType &u)
void PrintSelf(std::ostream &os, Indent indent) const override
static TRealValueType Evaluate(const Dispatch< 0 > &, const TRealValueType &u)
Control indentation during Print() invocation.
KernelFunctionBase()=default
virtual void PrintSelf(std::ostream &os, Indent indent) const
Implements transparent reference counting.
bool ExactlyEquals(const TInput1 &x1, const TInput2 &x2)
Return the result of an exact comparison between two scalar values of potentially different types.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....