ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkIdentityTransform.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 itkIdentityTransform_h
19#define itkIdentityTransform_h
20
21#include "itkObject.h"
22#include "itkPoint.h"
23#include "itkCovariantVector.h"
24#include "vnl/vnl_vector_fixed.h"
25#include "itkArray2D.h"
26#include "itkTransform.h"
27
28namespace itk
29{
49template <typename TParametersValueType, unsigned int VDimension = 3>
50class ITK_TEMPLATE_EXPORT IdentityTransform : public Transform<TParametersValueType, VDimension, VDimension>
51{
52public:
53 ITK_DISALLOW_COPY_AND_MOVE(IdentityTransform);
54
60
62 itkNewMacro(Self);
63
65 itkOverrideGetNameOfClassMacro(IdentityTransform);
66
68 static constexpr unsigned int InputSpaceDimension = VDimension;
69 static constexpr unsigned int OutputSpaceDimension = VDimension;
70
72 using typename Superclass::ParametersType;
77
78
80 using typename Superclass::JacobianType;
83
86
90
94
96 using InputVnlVectorType = vnl_vector_fixed<TParametersValueType, Self::InputSpaceDimension>;
97 using OutputVnlVectorType = vnl_vector_fixed<TParametersValueType, Self::OutputSpaceDimension>;
98
102
106 using InverseTransformBasePointer = typename InverseTransformBaseType::Pointer;
107
110 TransformPoint(const InputPointType & point) const override
111 {
112 return point;
113 }
114
116 using Superclass::TransformVector;
117 OutputVectorType
118 TransformVector(const InputVectorType & vector) const override
119 {
120 return vector;
121 }
122
124 OutputVnlVectorType
125 TransformVector(const InputVnlVectorType & vector) const override
126 {
127 return vector;
128 }
129
131 using Superclass::TransformCovariantVector;
132 OutputCovariantVectorType
134 {
135 return vector;
136 }
137
142 void
144 {}
145
174 void
176 {
177 jacobian.SetSize(VDimension, 0);
178 }
179
184 void
186 {
187 jac.set_identity();
188 }
189
190 using Superclass::ComputeJacobianWithRespectToPosition;
191
192 /* Always returns true if not null, as an identity is its own inverse */
193 bool
194 GetInverse(Self * inverseTransform) const
195 {
196 return (inverseTransform != nullptr);
197 }
198
201 InverseTransformBasePointer
202 GetInverseTransform() const override
203 {
204 return this->New().GetPointer();
205 }
206
212 TransformCategoryEnum
213 GetTransformCategory() const override
214 {
215 return Self::TransformCategoryEnum::Linear;
216 }
217
219 const FixedParametersType &
220 GetFixedParameters() const override
221 {
222 return this->m_FixedParameters;
223 }
224
226 void
228 {}
229
231 const ParametersType &
232 GetParameters() const override
233 {
234 return this->m_Parameters;
235 }
236
238 void
240 {}
241
242protected:
243 IdentityTransform() = default;
244 ~IdentityTransform() override = default;
245};
246} // end namespace itk
247
248#endif
void SetSize(unsigned int m, unsigned int n)
A templated class holding a n-Dimensional covariant vector.
TransformCategoryEnum GetTransformCategory() const override
OutputVnlVectorType TransformVector(const InputVnlVectorType &vector) const override
void ComputeJacobianWithRespectToParameters(const InputPointType &, JacobianType &jacobian) const override
OutputCovariantVectorType TransformCovariantVector(const InputCovariantVectorType &vector) const override
void SetFixedParameters(const FixedParametersType &) override
typename InverseTransformBaseType::Pointer InverseTransformBasePointer
const FixedParametersType & GetFixedParameters() const override
Array2D< ParametersValueType > JacobianType
Vector< TParametersValueType, Self::InputSpaceDimension > InputVectorType
vnl_matrix_fixed< ParametersValueType, VOutputDimension, VInputDimension > JacobianPositionType
OutputPointType TransformPoint(const InputPointType &point) const override
static constexpr unsigned int InputSpaceDimension
Point< TParametersValueType, Self::OutputSpaceDimension > OutputPointType
void SetParameters(const ParametersType &) override
InverseTransformBasePointer GetInverseTransform() const override
Transform< TParametersValueType, VDimension, VDimension > Superclass
SmartPointer< const Self > ConstPointer
const ParametersType & GetParameters() const override
SmartPointer< Self > Pointer
Vector< TParametersValueType, Self::OutputSpaceDimension > OutputVectorType
vnl_vector_fixed< TParametersValueType, Self::InputSpaceDimension > InputVnlVectorType
CovariantVector< TParametersValueType, Self::InputSpaceDimension > InputCovariantVectorType
ParametersValueType ScalarType
CovariantVector< TParametersValueType, Self::OutputSpaceDimension > OutputCovariantVectorType
Point< TParametersValueType, Self::InputSpaceDimension > InputPointType
~IdentityTransform() override=default
void ComputeJacobianWithRespectToPosition(const InputPointType &, JacobianPositionType &jac) const override
typename Superclass::InverseTransformBaseType InverseTransformBaseType
OutputVectorType TransformVector(const InputVectorType &vector) const override
bool GetInverse(Self *inverseTransform) const
static constexpr unsigned int OutputSpaceDimension
static Pointer New()
vnl_vector_fixed< TParametersValueType, Self::OutputSpaceDimension > OutputVnlVectorType
A templated class holding a geometric point in n-Dimensional space.
Definition itkPoint.h:54
Implements transparent reference counting.
OptimizerParameters< ParametersValueType > ParametersType
Transform< TParametersValueType, VOutputDimension, VInputDimension > InverseTransformBaseType
OptimizerParameters< FixedParametersValueType > FixedParametersType
TransformBaseTemplateEnums::TransformCategory TransformCategoryEnum
vnl_matrix_fixed< ParametersValueType, VOutputDimension, VInputDimension > JacobianPositionType
vnl_matrix_fixed< ParametersValueType, VInputDimension, VOutputDimension > InverseJacobianPositionType
A templated class holding a n-Dimensional vector.
Definition itkVector.h:63
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....