ITK  5.2.0
Insight Toolkit
itkScaleVersor3DTransform.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  * http://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 itkScaleVersor3DTransform_h
19 #define itkScaleVersor3DTransform_h
20 
22 
23 namespace itk
24 {
47 template <typename TParametersValueType = double>
48 class ITK_TEMPLATE_EXPORT ScaleVersor3DTransform : public VersorRigid3DTransform<TParametersValueType>
49 {
50 public:
51  ITK_DISALLOW_COPY_AND_MOVE(ScaleVersor3DTransform);
52 
58 
60  itkNewMacro(Self);
61 
64 
66  static constexpr unsigned int InputSpaceDimension = 3;
67  static constexpr unsigned int OutputSpaceDimension = 3;
68  static constexpr unsigned int ParametersDimension = 9;
69 
71  using ParametersType = typename Superclass::ParametersType;
72  using FixedParametersType = typename Superclass::FixedParametersType;
73  using JacobianType = typename Superclass::JacobianType;
74  using JacobianPositionType = typename Superclass::JacobianPositionType;
75  using InverseJacobianPositionType = typename Superclass::InverseJacobianPositionType;
76  using ScalarType = typename Superclass::ScalarType;
77  using InputPointType = typename Superclass::InputPointType;
78  using OutputPointType = typename Superclass::OutputPointType;
79  using InputVectorType = typename Superclass::InputVectorType;
80  using OutputVectorType = typename Superclass::OutputVectorType;
81  using InputVnlVectorType = typename Superclass::InputVnlVectorType;
82  using OutputVnlVectorType = typename Superclass::OutputVnlVectorType;
83  using InputCovariantVectorType = typename Superclass::InputCovariantVectorType;
84  using OutputCovariantVectorType = typename Superclass::OutputCovariantVectorType;
85  using MatrixType = typename Superclass::MatrixType;
86  using InverseMatrixType = typename Superclass::InverseMatrixType;
87  using CenterType = typename Superclass::CenterType;
88  using OffsetType = typename Superclass::OffsetType;
89  using TranslationType = typename Superclass::TranslationType;
90 
91  using VersorType = typename Superclass::VersorType;
92  using AxisType = typename Superclass::AxisType;
93  using AngleType = typename Superclass::AngleType;
94 
97 
103  void
104  SetMatrix(const MatrixType & matrix) override;
105  void
106  SetMatrix(const MatrixType & matrix, const TParametersValueType tolerance) override;
108 
116  void
117  SetParameters(const ParametersType & parameters) override;
118 
119  const ParametersType &
120  GetParameters() const override;
121 
124  void
125  SetScale(const ScaleVectorType & scale);
126 
127  itkGetConstReferenceMacro(Scale, ScaleVectorType);
128 
131  void
132  SetIdentity() override;
133 
138  void
139  ComputeJacobianWithRespectToParameters(const InputPointType & p, JacobianType & jacobian) const override;
140 
141 protected:
143  ScaleVersor3DTransform(const MatrixType & matrix, const OutputVectorType & offset);
144  ScaleVersor3DTransform(unsigned int parametersDimension);
145  ~ScaleVersor3DTransform() override = default;
146 
147  void
148  PrintSelf(std::ostream & os, Indent indent) const override;
149 
150  void
152  {
153  m_Scale = scale;
154  }
155 
157  void
158  ComputeMatrix() override;
159 
160  void
161  ComputeMatrixParameters() override;
162 
163 private:
166 }; // class ScaleVersor3DTransform
167 } // namespace itk
168 
169 #ifndef ITK_MANUAL_INSTANTIATION
170 # include "itkScaleVersor3DTransform.hxx"
171 #endif
172 
173 #endif /* __ScaleVersor3DTransform_h */
itk::Rigid3DTransform::InputPointType
typename Superclass::InputPointType InputPointType
Definition: itkRigid3DTransform.h:95
itk::Rigid3DTransform::JacobianType
typename Superclass::JacobianType JacobianType
Definition: itkRigid3DTransform.h:84
itk::Rigid3DTransform::OffsetType
typename Superclass::OffsetType OffsetType
Definition: itkRigid3DTransform.h:102
itk::VersorRigid3DTransform
VersorRigid3DTransform of a vector space (e.g. space coordinates)
Definition: itkVersorRigid3DTransform.h:46
itk::Rigid3DTransform::InputCovariantVectorType
typename Superclass::InputCovariantVectorType InputCovariantVectorType
Definition: itkRigid3DTransform.h:91
itk::Rigid3DTransform::ParametersType
typename Superclass::ParametersType ParametersType
Definition: itkRigid3DTransform.h:80
itk::Vector< TParametersValueType, 3 >
itk::SmartPointer< Self >
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
itk::ScaleVersor3DTransform::AngleType
typename Superclass::AngleType AngleType
Definition: itkScaleVersor3DTransform.h:93
itk::ScaleVersor3DTransform::m_Scale
ScaleVectorType m_Scale
Definition: itkScaleVersor3DTransform.h:165
itk::Rigid3DTransform::OutputVectorType
typename Superclass::OutputVectorType OutputVectorType
Definition: itkRigid3DTransform.h:89
itk::Rigid3DTransform::FixedParametersType
typename Superclass::FixedParametersType FixedParametersType
Definition: itkRigid3DTransform.h:82
itk::Rigid3DTransform::CenterType
typename Superclass::CenterType CenterType
Definition: itkRigid3DTransform.h:100
itk::Rigid3DTransform::JacobianPositionType
typename Superclass::JacobianPositionType JacobianPositionType
Definition: itkRigid3DTransform.h:85
itk::ScaleVersor3DTransform
This transform applies a Versor rotation, translation and anisotropic scale to the space.
Definition: itkScaleVersor3DTransform.h:48
itk::Rigid3DTransform::MatrixType
typename Superclass::MatrixType MatrixType
Definition: itkRigid3DTransform.h:97
itk::Rigid3DTransform::InputVectorType
typename Superclass::InputVectorType InputVectorType
Definition: itkRigid3DTransform.h:88
itk::LightObject
Light weight base class for most itk classes.
Definition: itkLightObject.h:59
itk::ScaleVersor3DTransform::SetVarScale
void SetVarScale(const ScaleVectorType &scale)
Definition: itkScaleVersor3DTransform.h:151
itk::ScaleVersor3DTransform::VersorType
typename Superclass::VersorType VersorType
Definition: itkScaleVersor3DTransform.h:91
itkVersorRigid3DTransform.h
itk::ScaleVersor3DTransform::AxisType
typename Superclass::AxisType AxisType
Definition: itkScaleVersor3DTransform.h:92
itk::Rigid3DTransform::ScalarType
typename Superclass::ScalarType ScalarType
Definition: itkRigid3DTransform.h:87
itk::Rigid3DTransform::OutputVnlVectorType
typename Superclass::OutputVnlVectorType OutputVnlVectorType
Definition: itkRigid3DTransform.h:94
itk::Rigid3DTransform::OutputCovariantVectorType
typename Superclass::OutputCovariantVectorType OutputCovariantVectorType
Definition: itkRigid3DTransform.h:92
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::Rigid3DTransform::OutputPointType
typename Superclass::OutputPointType OutputPointType
Definition: itkRigid3DTransform.h:96
itk::Rigid3DTransform::TranslationType
typename Superclass::TranslationType TranslationType
Definition: itkRigid3DTransform.h:101
itk::Rigid3DTransform::InputVnlVectorType
typename Superclass::InputVnlVectorType InputVnlVectorType
Definition: itkRigid3DTransform.h:93
itk::Rigid3DTransform::InverseMatrixType
typename Superclass::InverseMatrixType InverseMatrixType
Definition: itkRigid3DTransform.h:98
itk::Rigid3DTransform::InverseJacobianPositionType
typename Superclass::InverseJacobianPositionType InverseJacobianPositionType
Definition: itkRigid3DTransform.h:86