ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkAffineTransform.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 itkAffineTransform_h
19#define itkAffineTransform_h
20
22#include <iostream>
23
24
25namespace itk
26{
97
98template <typename TParametersValueType = double, unsigned int VDimension = 3>
99// Number of dimensions in the input space
100class ITK_TEMPLATE_EXPORT AffineTransform
101 : public MatrixOffsetTransformBase<TParametersValueType, VDimension, VDimension>
102{
103public:
104 ITK_DISALLOW_COPY_AND_MOVE(AffineTransform);
105
109
112
114 itkOverrideGetNameOfClassMacro(AffineTransform);
115
117 itkNewMacro(Self);
118
120 static constexpr unsigned int InputSpaceDimension = VDimension;
121 static constexpr unsigned int OutputSpaceDimension = VDimension;
122 static constexpr unsigned int SpaceDimension = VDimension;
123 static constexpr unsigned int ParametersDimension = VDimension * (VDimension + 1);
124
126 using typename Superclass::ParametersType;
127 using typename Superclass::FixedParametersType;
128 using typename Superclass::JacobianType;
131 using typename Superclass::ScalarType;
132 using typename Superclass::InputPointType;
133 using typename Superclass::OutputPointType;
134 using typename Superclass::InputVectorType;
135 using typename Superclass::OutputVectorType;
136 using typename Superclass::InputVnlVectorType;
137 using typename Superclass::OutputVnlVectorType;
140 using typename Superclass::MatrixType;
141 using typename Superclass::InverseMatrixType;
142 using typename Superclass::CenterType;
143 using typename Superclass::OffsetType;
144 using typename Superclass::TranslationType;
145
149 using InverseTransformBasePointer = typename InverseTransformBaseType::Pointer;
150
157 void
158 Translate(const OutputVectorType & trans, bool pre = false);
159
171 void
172 Scale(const OutputVectorType & factor, bool pre = false);
173
174 void
175 Scale(const TParametersValueType & factor, bool pre = false);
176
192 void
193 Rotate(int axis1, int axis2, TParametersValueType angle, bool pre = false);
194
208 void
209 Rotate2D(TParametersValueType angle, bool pre = false);
210
224 void
225 Rotate3D(const OutputVectorType & axis, TParametersValueType angle, bool pre = false);
226
238 void
239 Shear(int axis1, int axis2, TParametersValueType coef, bool pre = false);
240
242 bool
243 GetInverse(Self * inverse) const;
244
247 GetInverseTransform() const override;
248
261 Metric(const Self * other) const;
262
267 Metric() const;
268
269protected:
278#if !defined(ITK_LEGACY_REMOVE)
279 [[deprecated("Removed unused constructor")]] AffineTransform(const MatrixType & matrix,
280 const OutputVectorType & offset);
281#endif
282 AffineTransform(unsigned int parametersDimension);
286 ~AffineTransform() override = default;
287
288}; // class AffineTransform
289
290} // namespace itk
291
292#ifndef ITK_MANUAL_INSTANTIATION
293# include "itkAffineTransform.hxx"
294#endif
295
296#endif /* itkAffineTransform_h */
ScalarType Metric() const
typename Superclass::InverseTransformBaseType InverseTransformBaseType
void Shear(int axis1, int axis2, TParametersValueType coef, bool pre=false)
Matrix< TParametersValueType, Self::OutputSpaceDimension, Self::InputSpaceDimension > MatrixType
typename InverseTransformBaseType::Pointer InverseTransformBasePointer
void Rotate2D(TParametersValueType angle, bool pre=false)
void Scale(const TParametersValueType &factor, bool pre=false)
void Rotate(int axis1, int axis2, TParametersValueType angle, bool pre=false)
bool GetInverse(Self *inverse) const
AffineTransform(unsigned int parametersDimension)
void Scale(const OutputVectorType &factor, bool pre=false)
ScalarType Metric(const Self *other) const
void Rotate3D(const OutputVectorType &axis, TParametersValueType angle, bool pre=false)
MatrixOffsetTransformBase< TParametersValueType, VDimension, VDimension > Superclass
~AffineTransform() override=default
Vector< TParametersValueType, Self::OutputSpaceDimension > OutputVectorType
InverseTransformBasePointer GetInverseTransform() const override
SmartPointer< const Self > ConstPointer
SmartPointer< Self > Pointer
void Translate(const OutputVectorType &trans, bool pre=false)
vnl_vector_fixed< TParametersValueType, Self::InputSpaceDimension > InputVnlVectorType
vnl_matrix_fixed< ParametersValueType, VOutputDimension, VInputDimension > JacobianPositionType
vnl_vector_fixed< TParametersValueType, Self::OutputSpaceDimension > OutputVnlVectorType
Matrix< TParametersValueType, Self::InputSpaceDimension, Self::OutputSpaceDimension > InverseMatrixType
CovariantVector< TParametersValueType, Self::InputSpaceDimension > InputCovariantVectorType
CovariantVector< TParametersValueType, Self::OutputSpaceDimension > OutputCovariantVectorType
MatrixOffsetTransformBase(unsigned int paramDims=ParametersDimension)
Matrix< TParametersValueType, Self::OutputSpaceDimension, Self::InputSpaceDimension > MatrixType
vnl_matrix_fixed< ParametersValueType, VInputDimension, VOutputDimension > InverseJacobianPositionType
Implements transparent reference counting.
OptimizerParameters< ParametersValueType > ParametersType
OptimizerParameters< FixedParametersValueType > FixedParametersType
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....