ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkTranslationTransform.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 itkTranslationTransform_h
19#define itkTranslationTransform_h
20
21#include "itkTransform.h"
22#include "itkMacro.h"
23#include "itkMatrix.h"
24
25namespace itk
26{
27
42template <typename TParametersValueType = double, unsigned int VDimension = 3>
43class ITK_TEMPLATE_EXPORT TranslationTransform : public Transform<TParametersValueType, VDimension, VDimension>
44{
45public:
46 ITK_DISALLOW_COPY_AND_MOVE(TranslationTransform);
47
53
55 itkNewMacro(Self);
56
58 itkOverrideGetNameOfClassMacro(TranslationTransform);
59
61 static constexpr unsigned int SpaceDimension = VDimension;
62 static constexpr unsigned int ParametersDimension = VDimension;
63
65 using typename Superclass::ScalarType;
66
69 using typename Superclass::ParametersType;
70
72 using typename Superclass::JacobianType;
75
78
82
86
88 using InputVnlVectorType = vnl_vector_fixed<TParametersValueType, VDimension>;
89 using OutputVnlVectorType = vnl_vector_fixed<TParametersValueType, VDimension>;
90
94
98 using InverseTransformBasePointer = typename InverseTransformBaseType::Pointer;
99
102
105 const OutputVectorType &
106 GetOffset() const
107 {
108 return m_Offset;
109 }
110
113 void
114 SetParameters(const ParametersType & parameters) override;
115
117 const ParametersType &
118 GetParameters() const override;
119
123 void
125 {
126 m_Offset = offset;
127 return;
128 }
129
131 void
132 Compose(const Self * other, bool pre = false);
133
138 void
139 Translate(const OutputVectorType & offset, bool pre = false);
140
146 TransformPoint(const InputPointType & point) const override;
147
150 TransformVector(const InputVectorType & vect) const override;
151
153 TransformVector(const InputVnlVectorType & vect) const override;
154
158
162 inline InputPointType
163 BackTransform(const OutputPointType & point) const;
164
165 inline InputVectorType
166 BackTransform(const OutputVectorType & vect) const;
167
168 inline InputVnlVectorType
169 BackTransform(const OutputVnlVectorType & vect) const;
170
172 BackTransform(const OutputCovariantVectorType & vect) const;
173
178 bool
179 GetInverse(Self * inverse) const;
180
183 GetInverseTransform() const override;
184
186 void
187 ComputeJacobianWithRespectToParameters(const InputPointType & point, JacobianType & jacobian) const override;
188
189
194 void
197
199 void
201
204 GetNumberOfParameters() const override
205 {
206 return VDimension;
207 }
208
214 bool
215 IsLinear() const override
216 {
217 return true;
218 }
219
223 TransformCategoryEnum
224 GetTransformCategory() const override
225 {
226 return Self::TransformCategoryEnum::Linear;
227 }
228
232 void
234 {}
235
239 const FixedParametersType &
240 GetFixedParameters() const override
241 {
242 this->m_FixedParameters.SetSize(0);
243 return this->m_FixedParameters;
244 }
245
246protected:
248 ~TranslationTransform() override = default;
250 void
251 PrintSelf(std::ostream & os, Indent indent) const override;
252
253private:
255 OutputVectorType m_Offset{}; // Offset of the transformation
256}; // class TranslationTransform
257
258// Back transform a point
259template <typename TParametersValueType, unsigned int VDimension>
260inline auto
266
267// Back transform a vector
268template <typename TParametersValueType, unsigned int VDimension>
269inline auto
275
276// Back transform a vnl_vector
277template <typename TParametersValueType, unsigned int VDimension>
278inline auto
284
285// Back Transform a CovariantVector
286template <typename TParametersValueType, unsigned int VDimension>
287inline auto
293
294} // namespace itk
295
296#ifndef ITK_MANUAL_INSTANTIATION
297# include "itkTranslationTransform.hxx"
298#endif
299
300#endif /* itkTranslationTransform_h */
A templated class holding a n-Dimensional covariant vector.
Control indentation during Print() invocation.
Definition itkIndent.h:50
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
virtual void ComputeJacobianWithRespectToPosition(const InputPointType &x, JacobianPositionType &jacobian) const
FixedParametersType m_FixedParameters
OptimizerParameters< FixedParametersValueType > FixedParametersType
virtual OutputVectorType TransformVector(const InputVectorType &) const
TransformBaseTemplateEnums::TransformCategory TransformCategoryEnum
vnl_matrix_fixed< ParametersValueType, VOutputDimension, VInputDimension > JacobianPositionType
vnl_matrix_fixed< ParametersValueType, VInputDimension, VOutputDimension > InverseJacobianPositionType
virtual OutputCovariantVectorType TransformCovariantVector(const InputCovariantVectorType &) const
static constexpr unsigned int ParametersDimension
OutputVectorType TransformVector(const InputVectorType &vect) const override
const OutputVectorType & GetOffset() const
typename Superclass::InverseTransformBaseType InverseTransformBaseType
SmartPointer< const Self > ConstPointer
OutputCovariantVectorType TransformCovariantVector(const InputCovariantVectorType &vect) const override
void ComputeJacobianWithRespectToParameters(const InputPointType &point, JacobianType &jacobian) const override
Array2D< ParametersValueType > JacobianType
typename InverseTransformBaseType::Pointer InverseTransformBasePointer
vnl_matrix_fixed< ParametersValueType, VOutputDimension, VInputDimension > JacobianPositionType
Vector< TParametersValueType, VDimension > InputVectorType
void SetParameters(const ParametersType &parameters) override
~TranslationTransform() override=default
void SetFixedParameters(const FixedParametersType &) override
const ParametersType & GetParameters() const override
Vector< TParametersValueType, VDimension > OutputVectorType
CovariantVector< TParametersValueType, VDimension > OutputCovariantVectorType
Point< TParametersValueType, VDimension > InputPointType
CovariantVector< TParametersValueType, VDimension > InputCovariantVectorType
OptimizerParameters< FixedParametersValueType > FixedParametersType
IdentifierType NumberOfParametersType
OutputPointType TransformPoint(const InputPointType &point) const override
InputPointType BackTransform(const OutputPointType &point) const
bool GetInverse(Self *inverse) const
NumberOfParametersType GetNumberOfParameters() const override
TransformCategoryEnum GetTransformCategory() const override
void PrintSelf(std::ostream &os, Indent indent) const override
const FixedParametersType & GetFixedParameters() const override
Transform< TParametersValueType, VDimension, VDimension > Superclass
vnl_vector_fixed< TParametersValueType, VDimension > InputVnlVectorType
void SetOffset(const OutputVectorType &offset)
void ComputeJacobianWithRespectToPosition(const InputPointType &x, JacobianPositionType &jac) const override
void Compose(const Self *other, bool pre=false)
InverseTransformBasePointer GetInverseTransform() const override
OptimizerParameters< ParametersValueType > ParametersType
Point< TParametersValueType, VDimension > OutputPointType
static constexpr unsigned int SpaceDimension
void Translate(const OutputVectorType &offset, bool pre=false)
OutputVnlVectorType TransformVector(const InputVnlVectorType &vect) const override
vnl_vector_fixed< TParametersValueType, VDimension > OutputVnlVectorType
A templated class holding a n-Dimensional vector.
Definition itkVector.h:63
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....