ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkScalableAffineTransform.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 itkScalableAffineTransform_h
19#define itkScalableAffineTransform_h
20
21#include "itkAffineTransform.h"
22
23namespace itk
24{
32
33template <typename TParametersValueType = double, unsigned int VDimension = 3>
34class ITK_TEMPLATE_EXPORT ScalableAffineTransform : public AffineTransform<TParametersValueType, VDimension>
35{
36public:
38
44
47
50
52 static constexpr unsigned int InputSpaceDimension = VDimension;
53 static constexpr unsigned int OutputSpaceDimension = VDimension;
54 static constexpr unsigned int SpaceDimension = VDimension;
55 static constexpr unsigned int ParametersDimension = VDimension * (VDimension + 1);
56
58 using typename Superclass::ParametersType;
62 using typename Superclass::JacobianType;
65 using typename Superclass::ScalarType;
66 using typename Superclass::InputVectorType;
67 using typename Superclass::OutputVectorType;
70 using typename Superclass::InputVnlVectorType;
72 using typename Superclass::InputPointType;
73 using typename Superclass::OutputPointType;
74 using typename Superclass::MatrixType;
75 using typename Superclass::MatrixValueType;
76 using typename Superclass::InverseMatrixType;
77 using typename Superclass::CenterType;
78 using typename Superclass::OffsetType;
79 using typename Superclass::TranslationType;
80
84 using InverseTransformBasePointer = typename InverseTransformBaseType::Pointer;
85
88 void
89 SetIdentity() override;
90
92 virtual void
93 SetScale(const InputVectorType & scale);
94
95 virtual void
97 {
98 this->SetScale(scale);
99 }
100
102 virtual void
103 SetScale(const double scale[VDimension]);
104
105 virtual void
106 SetScaleComponent(const double scale[VDimension])
107 {
108 this->SetScale(scale);
109 }
110
112 virtual const double *
113 GetScale() const
114 {
115 return m_Scale;
116 }
117 virtual const double *
119 {
120 return m_Scale;
121 }
122
123
125 bool
126 GetInverse(Self * inverse) const;
127
130 GetInverseTransform() const override;
131
132protected:
140#if !defined(ITK_LEGACY_REMOVE)
141 [[deprecated("Removed unused constructor")]] ScalableAffineTransform(const MatrixType & matrix,
142 const OutputVectorType & offset);
143#endif
144 ScalableAffineTransform(unsigned int outputSpaceDimension, unsigned int parametersDimension);
145 ScalableAffineTransform(unsigned int parametersDimension);
148
150 void
151 ComputeMatrix() override;
152
153 ~ScalableAffineTransform() override = default;
154
155 void
156 PrintSelf(std::ostream & os, Indent indent) const override;
157
158 void
159 SetVarScale(const double * scale)
160 {
161 for (int i = 0; i < InputSpaceDimension; ++i)
162 {
163 m_Scale[i] = scale[i];
164 }
165 }
166
167private:
168 double m_Scale[VDimension]{};
170}; // class ScalableAffineTransform
171} // namespace itk
172
173#ifndef ITK_MANUAL_INSTANTIATION
174# include "itkScalableAffineTransform.hxx"
175#endif
176
177#endif /* itkScalableAffineTransform_h */
OptimizerParameters< FixedParametersValueType > FixedParametersType
TParametersValueType ParametersValueType
OptimizerParameters< ParametersValueType > ParametersType
Vector< TParametersValueType, Self::InputSpaceDimension > InputVectorType
Point< TParametersValueType, Self::InputSpaceDimension > InputPointType
vnl_vector_fixed< TParametersValueType, Self::OutputSpaceDimension > OutputVnlVectorType
typename Superclass::InverseTransformBaseType InverseTransformBaseType
Matrix< TParametersValueType, Self::OutputSpaceDimension, Self::InputSpaceDimension > MatrixType
AffineTransform(const MatrixType &matrix, const OutputVectorType &offset)
Matrix< TParametersValueType, Self::InputSpaceDimension, Self::OutputSpaceDimension > InverseMatrixType
vnl_vector_fixed< TParametersValueType, Self::InputSpaceDimension > InputVnlVectorType
Vector< TParametersValueType, Self::OutputSpaceDimension > OutputVectorType
ITK_DISALLOW_COPY_AND_MOVE(AffineTransform)
CovariantVector< TParametersValueType, Self::InputSpaceDimension > InputCovariantVectorType
Point< TParametersValueType, Self::OutputSpaceDimension > OutputPointType
CovariantVector< TParametersValueType, Self::OutputSpaceDimension > OutputCovariantVectorType
Control indentation during Print() invocation.
Definition itkIndent.h:50
void ComputeMatrix() override
typename Superclass::InverseTransformBaseType InverseTransformBaseType
ScalableAffineTransform(unsigned int outputSpaceDimension, unsigned int parametersDimension)
void PrintSelf(std::ostream &os, Indent indent) const override
virtual const double * GetScaleComponent() const
Vector< TParametersValueType, Self::OutputSpaceDimension > OutputVectorType
Matrix< TParametersValueType, Self::OutputSpaceDimension, Self::InputSpaceDimension > MatrixType
~ScalableAffineTransform() override=default
ScalableAffineTransform(unsigned int parametersDimension)
bool GetInverse(Self *inverse) const
virtual const double * GetScale() const
virtual void SetScale(const double scale[VDimension])
AffineTransform< TParametersValueType, VDimension > Superclass
InverseTransformBasePointer GetInverseTransform() const override
Vector< TParametersValueType, Self::InputSpaceDimension > InputVectorType
virtual void SetScaleComponent(const double scale[VDimension])
virtual void SetScaleComponent(const InputVectorType &scale)
virtual void SetScale(const InputVectorType &scale)
Implements transparent reference counting.
vnl_matrix_fixed< ParametersValueType, VOutputDimension, VInputDimension > JacobianPositionType
vnl_matrix_fixed< ParametersValueType, VInputDimension, VOutputDimension > InverseJacobianPositionType
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....