ITK  6.0.0
Insight Toolkit
itkBSplineExponentialDiffeomorphicTransform.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 itkBSplineExponentialDiffeomorphicTransform_h
19#define itkBSplineExponentialDiffeomorphicTransform_h
20
23#include "itkPointSet.h"
24
25namespace itk
26{
27
55template <typename TParametersValueType, unsigned int VDimension>
57 : public ConstantVelocityFieldTransform<TParametersValueType, VDimension>
58{
59public:
60 ITK_DISALLOW_COPY_AND_MOVE(BSplineExponentialDiffeomorphicTransform);
61
67
69 itkOverrideGetNameOfClassMacro(BSplineExponentialDiffeomorphicTransform);
70
72 itkNewMacro(Self);
73
75 static constexpr unsigned int ConstantVelocityFieldDimension = VDimension;
76
78 static constexpr unsigned int Dimension = VDimension;
79
81 using typename Superclass::ScalarType;
82 using typename Superclass::DerivativeType;
84
85 using typename Superclass::ParametersType;
86 using typename Superclass::ParametersValueType;
87 using typename Superclass::FixedParametersType;
88 using typename Superclass::FixedParametersValueType;
89
90 using typename Superclass::DisplacementFieldType;
91 using typename Superclass::DisplacementFieldPointer;
92 using typename Superclass::ConstantVelocityFieldType;
93 using typename Superclass::ConstantVelocityFieldPointer;
94
96
102 using SplineOrderType = unsigned int;
106 using ArrayValueType = typename ArrayType::ValueType;
107
113 void
114 UpdateTransformParameters(const DerivativeType & update, ScalarType factor = 1.0) override;
115
121
125 itkSetMacro(SplineOrder, SplineOrderType);
126 itkGetConstMacro(SplineOrder, SplineOrderType);
136 itkSetMacro(NumberOfControlPointsForTheConstantVelocityField, ArrayType);
137 itkGetConstMacro(NumberOfControlPointsForTheConstantVelocityField, ArrayType);
147 itkSetMacro(NumberOfControlPointsForTheUpdateField, ArrayType);
148 itkGetConstMacro(NumberOfControlPointsForTheUpdateField, ArrayType);
157 void
159
166 void
168
169protected:
172
173 void
174 PrintSelf(std::ostream &, Indent) const override;
175
176private:
177 ArrayType m_NumberOfControlPointsForTheConstantVelocityField{};
178 ArrayType m_NumberOfControlPointsForTheUpdateField{};
179
180 SplineOrderType m_SplineOrder{ 3 };
181};
182
183} // end namespace itk
184
185#ifndef ITK_MANUAL_INSTANTIATION
186# include "itkBSplineExponentialDiffeomorphicTransform.hxx"
187#endif
188
189#endif // itkBSplineExponentialDiffeomorphicTransform_h
SmartPointer< const Self > ConstPointer
SmartPointer< Self > Pointer
Array class with size defined at construction time.
Definition: itkArray.h:48
TValue ValueType
Definition: itkArray.h:52
Exponential transform using B-splines as the smoothing kernel.
void SetMeshSizeForTheConstantVelocityField(const ArrayType &)
typename BSplineFilterType::WeightsContainerType WeightsContainerType
void UpdateTransformParameters(const DerivativeType &update, ScalarType factor=1.0) override
~BSplineExponentialDiffeomorphicTransform() override=default
void PrintSelf(std::ostream &, Indent) const override
void SetMeshSizeForTheUpdateField(const ArrayType &)
virtual ConstantVelocityFieldPointer BSplineSmoothConstantVelocityField(const ConstantVelocityFieldType *, const ArrayType &)
Provides local/dense/high-dimensionality transformation via a a constant velocity field.
typename ConstantVelocityFieldType::Pointer ConstantVelocityFieldPointer
Class which takes a dense displacement field image and/or a set of points with associated displacemen...
typename BSplineFilterType::WeightsContainerType WeightsContainerType
Templated n-dimensional image class.
Definition: itkImage.h:89
TPixel PixelType
Definition: itkImage.h:108
Control indentation during Print() invocation.
Definition: itkIndent.h:50
A superclass of the N-dimensional mesh structure; supports point (geometric coordinate and attribute)...
Definition: itkPointSet.h:82
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....