ITK  6.0.0
Insight Toolkit
itkThinPlateSplineKernelTransform.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 itkThinPlateSplineKernelTransform_h
19#define itkThinPlateSplineKernelTransform_h
20
21#include "itkKernelTransform.h"
22
23namespace itk
24{
33template <typename TParametersValueType, unsigned int VDimension = 3>
34// Number of dimensions
35class ITK_TEMPLATE_EXPORT ThinPlateSplineKernelTransform : public KernelTransform<TParametersValueType, VDimension>
36{
37public:
38 ITK_DISALLOW_COPY_AND_MOVE(ThinPlateSplineKernelTransform);
39
45
47 itkNewMacro(Self);
48
50 itkOverrideGetNameOfClassMacro(ThinPlateSplineKernelTransform);
51
53 using typename Superclass::ScalarType;
54
56 using typename Superclass::ParametersType;
57 using typename Superclass::FixedParametersType;
58
60 using typename Superclass::JacobianType;
61 using typename Superclass::JacobianPositionType;
62 using typename Superclass::InverseJacobianPositionType;
63
65 static constexpr unsigned int SpaceDimension = Superclass::SpaceDimension;
66
68 using typename Superclass::InputPointType;
69 using typename Superclass::OutputPointType;
70 using typename Superclass::InputVectorType;
71 using typename Superclass::OutputVectorType;
72 using typename Superclass::InputCovariantVectorType;
73 using typename Superclass::OutputCovariantVectorType;
74 using typename Superclass::PointsIterator;
75
76protected:
78 ~ThinPlateSplineKernelTransform() override = default;
79
81 using typename Superclass::GMatrixType;
82
91 void
92 ComputeG(const InputVectorType & x, GMatrixType & gmatrix) const override;
93
96 void
97 ComputeDeformationContribution(const InputPointType & thisPoint, OutputPointType & result) const override;
98};
99} // namespace itk
100
101#ifndef ITK_MANUAL_INSTANTIATION
102# include "itkThinPlateSplineKernelTransform.hxx"
103#endif
104
105#endif // itkThinPlateSplineKernelTransform_h
vnl_matrix_fixed< TParametersValueType, VDimension, VDimension > GMatrixType
Light weight base class for most itk classes.
A templated class holding a geometric point in n-Dimensional space.
Definition: itkPoint.h:54
void ComputeDeformationContribution(const InputPointType &thisPoint, OutputPointType &result) const override
void ComputeG(const InputVectorType &x, GMatrixType &gmatrix) const override
~ThinPlateSplineKernelTransform() override=default
A templated class holding a n-Dimensional vector.
Definition: itkVector.h:63
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....