ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkBSplineKernelFunction.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 itkBSplineKernelFunction_h
19#define itkBSplineKernelFunction_h
20
22#include "itkMath.h"
23
24namespace itk
25{
42template <unsigned int VSplineOrder = 3, typename TRealValueType = double>
43class ITK_TEMPLATE_EXPORT BSplineKernelFunction : public KernelFunctionBase<TRealValueType>
44{
45public:
46 ITK_DISALLOW_COPY_AND_MOVE(BSplineKernelFunction);
47
52
53 using typename Superclass::RealType;
55 itkNewMacro(Self);
56
58 itkOverrideGetNameOfClassMacro(BSplineKernelFunction);
59
61 static constexpr unsigned int SplineOrder = VSplineOrder;
62
65 static TRealValueType
66 FastEvaluate(const TRealValueType u)
67 {
68 return Self::Evaluate(Dispatch<VSplineOrder>(), u);
69 }
70
72 TRealValueType
73 Evaluate(const TRealValueType & u) const override
74 {
75 return Self::FastEvaluate(u);
76 }
77
78protected:
80 ~BSplineKernelFunction() override = default;
81 void
82 PrintSelf(std::ostream & os, Indent indent) const override
83 {
84 Superclass::PrintSelf(os, indent);
85
86 os << indent << "SplineOrder: " << SplineOrder << std::endl;
87 }
88
89private:
92 {};
93 template <unsigned int>
94 struct Dispatch : public DispatchBase
95 {};
96
98 static inline TRealValueType
99 Evaluate(const Dispatch<0> &, const TRealValueType & u)
100 {
101 const TRealValueType absValue = itk::Math::abs(u);
102 if (absValue < TRealValueType{ 0.5 })
103 {
104 return TRealValueType{ 1.0 };
105 }
106 if (Math::ExactlyEquals(absValue, TRealValueType{ 0.5 }))
107 {
108 return TRealValueType{ 0.5 };
109 }
110 else
111 {
112 return TRealValueType{ 0.0 };
113 }
114 }
115
117 static inline TRealValueType
118 Evaluate(const Dispatch<1> &, const TRealValueType & u)
119 {
120 const TRealValueType absValue = itk::Math::abs(u);
121 if (absValue < TRealValueType{ 1.0 })
122 {
123 return TRealValueType{ 1.0 } - absValue;
124 }
125
126 return TRealValueType{ 0.0 };
127 }
128
130 static inline TRealValueType
131 Evaluate(const Dispatch<2> &, const TRealValueType & u)
132 {
133 const TRealValueType absValue = itk::Math::abs(u);
134 if (absValue < TRealValueType{ 0.5 })
135 {
136 const TRealValueType sqrValue = itk::Math::sqr(absValue);
137 return TRealValueType{ 0.75 } - sqrValue;
138 }
139 if (absValue < TRealValueType{ 1.5 })
140 {
141 const TRealValueType sqrValue = itk::Math::sqr(absValue);
142 // NOTE: 1.0/8.0 == 0.125
143 return (TRealValueType{ 9.0 } - TRealValueType{ 12.0 } * absValue + TRealValueType{ 4.0 } * sqrValue) *
144 TRealValueType{ 0.125 };
145 }
146 else
147 {
148 return TRealValueType{ 0.0 };
149 }
150 }
151
153 static inline TRealValueType
154 Evaluate(const Dispatch<3> &, const TRealValueType & u)
155 {
156 const TRealValueType absValue = itk::Math::abs(u);
157 if (absValue < TRealValueType{ 1.0 })
158 {
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 };
162 }
163 if (absValue < TRealValueType{ 2.0 })
164 {
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 };
169 }
170 else
171 {
172 return TRealValueType{ 0.0 };
173 }
174 }
175
177 static inline TRealValueType
178 Evaluate(const DispatchBase &, const TRealValueType &)
179 {
180 itkGenericExceptionMacro("Evaluate not implemented for spline order " << SplineOrder);
181 }
182};
183
184} // end namespace itk
185
186#endif
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)
static constexpr unsigned int SplineOrder
static TRealValueType Evaluate(const Dispatch< 3 > &, const TRealValueType &u)
static TRealValueType Evaluate(const DispatchBase &, const TRealValueType &)
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.
Definition itkIndent.h:50
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.
Definition itkMath.h:719
bool abs(bool x)
Definition itkMath.h:836
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....