ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkCoxDeBoorBSplineKernelFunction.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 itkCoxDeBoorBSplineKernelFunction_h
19#define itkCoxDeBoorBSplineKernelFunction_h
20
22#include "vnl/vnl_real_polynomial.h"
23#include "vnl/vnl_matrix.h"
24
25namespace itk
26{
53template <unsigned int VSplineOrder = 3, typename TRealValueType = double>
54class ITK_TEMPLATE_EXPORT CoxDeBoorBSplineKernelFunction : public KernelFunctionBase<TRealValueType>
55{
56public:
57 ITK_DISALLOW_COPY_AND_MOVE(CoxDeBoorBSplineKernelFunction);
58
64
65 using typename Superclass::RealType;
66
68 itkNewMacro(Self);
69
71 itkOverrideGetNameOfClassMacro(CoxDeBoorBSplineKernelFunction);
72
73 using VectorType = vnl_vector<TRealValueType>;
74 using PolynomialType = vnl_real_polynomial;
75 using MatrixType = vnl_matrix<TRealValueType>;
76
78 void
79 SetSplineOrder(const unsigned int);
80
82 itkGetConstMacro(SplineOrder, unsigned int);
83
85 TRealValueType
86 Evaluate(const TRealValueType &) const override;
87
89 TRealValueType
90 EvaluateDerivative(const TRealValueType &) const;
91
93 TRealValueType
94 EvaluateNthDerivative(const TRealValueType &, const unsigned int) const;
95
103
110
111protected:
114 void
115 PrintSelf(std::ostream & os, Indent indent) const override;
116
117private:
122 void
123 GenerateBSplineShapeFunctions(const unsigned int);
124
131 CoxDeBoor(const unsigned short, const VectorType, const unsigned int, const unsigned int);
132
134 unsigned int m_SplineOrder{};
135};
136} // end namespace itk
137
138#ifndef ITK_MANUAL_INSTANTIATION
139# include "itkCoxDeBoorBSplineKernelFunction.hxx"
140#endif
141
142#endif
void SetSplineOrder(const unsigned int)
TRealValueType EvaluateNthDerivative(const TRealValueType &, const unsigned int) const
TRealValueType EvaluateDerivative(const TRealValueType &) const
MatrixType GetShapeFunctionsInZeroToOneInterval()
~CoxDeBoorBSplineKernelFunction() override=default
PolynomialType CoxDeBoor(const unsigned short, const VectorType, const unsigned int, const unsigned int)
void PrintSelf(std::ostream &os, Indent indent) const override
void GenerateBSplineShapeFunctions(const unsigned int)
TRealValueType Evaluate(const TRealValueType &) const override
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....