ITK  6.0.0
Insight Toolkit
itkCenteredAffineTransform.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 itkCenteredAffineTransform_h
19 #define itkCenteredAffineTransform_h
20 
21 #include "itkAffineTransform.h"
22 
23 namespace itk
24 {
33 template <typename TParametersValueType = double, unsigned int VDimension = 3>
34 class ITK_TEMPLATE_EXPORT CenteredAffineTransform : public AffineTransform<TParametersValueType, VDimension>
35 {
36 public:
37  ITK_DISALLOW_COPY_AND_MOVE(CenteredAffineTransform);
38 
44 
46  itkOverrideGetNameOfClassMacro(CenteredAffineTransform);
47 
49  itkNewMacro(Self);
50 
52  static constexpr unsigned int SpaceDimension = VDimension;
53  static constexpr unsigned int ParametersDimension = VDimension * (VDimension + 2);
54 
56  using typename Superclass::ParametersType;
57  using typename Superclass::ParametersValueType;
58  using typename Superclass::FixedParametersType;
59  using typename Superclass::FixedParametersValueType;
60  using typename Superclass::JacobianType;
61  using typename Superclass::JacobianPositionType;
63  using typename Superclass::ScalarType;
64  using typename Superclass::InputVectorType;
65  using typename Superclass::OutputVectorType;
68 
69  using typename Superclass::InputVnlVectorType;
70  using typename Superclass::OutputVnlVectorType;
71  using typename Superclass::InputPointType;
72  using typename Superclass::InputPointValueType;
73  using typename Superclass::OutputVectorValueType;
74  using typename Superclass::OutputPointType;
75  using typename Superclass::MatrixType;
76  using typename Superclass::MatrixValueType;
77  using typename Superclass::OffsetType;
78 
83 
92  void
93  SetParameters(const ParametersType & parameters) override;
94 
95  const ParametersType &
96  GetParameters() const override;
97 
104  void
105  ComputeJacobianWithRespectToParameters(const InputPointType & p, JacobianType & jacobian) const override;
106 
108  bool
109  GetInverse(Self * inverse) const;
110 
113  GetInverseTransform() const override;
114 
115 protected:
118 
120  ~CenteredAffineTransform() override = default;
121 }; // class CenteredAffineTransform
122 } // namespace itk
123 
124 #ifndef ITK_MANUAL_INSTANTIATION
125 # include "itkCenteredAffineTransform.hxx"
126 #endif
127 
128 #endif /* itkCenteredAffineTransform_h */
Pointer
SmartPointer< Self > Pointer
Definition: itkAddImageFilter.h:93
itk::MatrixOffsetTransformBase< TParametersValueType, VDimension, VDimension >::OutputVnlVectorType
vnl_vector_fixed< TParametersValueType, Self::OutputSpaceDimension > OutputVnlVectorType
Definition: itkMatrixOffsetTransformBase.h:171
itk::Vector< TParametersValueType, Self::InputSpaceDimension >
itk::MatrixOffsetTransformBase< TParametersValueType, VDimension, VDimension >::MatrixValueType
typename MatrixType::ValueType MatrixValueType
Definition: itkMatrixOffsetTransformBase.h:181
itk::MatrixOffsetTransformBase< TParametersValueType, VDimension, VDimension >
itk::SmartPointer< Self >
itk::MatrixOffsetTransformBase< TParametersValueType, VDimension, VDimension >::InverseJacobianPositionType
vnl_matrix_fixed< ParametersValueType, VInputDimension, VOutputDimension > InverseJacobianPositionType
Definition: itkTransform.h:132
itkAffineTransform.h
itk::AffineTransform
Definition: itkAffineTransform.h:101
itk::AffineTransform::InverseTransformBasePointer
typename InverseTransformBaseType::Pointer InverseTransformBasePointer
Definition: itkAffineTransform.h:150
itk::MatrixOffsetTransformBase< TParametersValueType, VDimension, VDimension >::ScalarType
ParametersValueType ScalarType
Definition: itkTransform.h:127
itk::MatrixOffsetTransformBase< TParametersValueType, VDimension, VDimension >::JacobianPositionType
vnl_matrix_fixed< ParametersValueType, VOutputDimension, VInputDimension > JacobianPositionType
Definition: itkTransform.h:131
itk::MatrixOffsetTransformBase< TParametersValueType, VDimension, VDimension >::InverseTransformBaseType
typename Superclass::InverseTransformBaseType InverseTransformBaseType
Definition: itkMatrixOffsetTransformBase.h:197
itk::MatrixOffsetTransformBase< TParametersValueType, VDimension, VDimension >::OutputVectorValueType
typename OutputVectorType::ValueType OutputVectorValueType
Definition: itkMatrixOffsetTransformBase.h:150
itk::MatrixOffsetTransformBase< TParametersValueType, VDimension, VDimension >::InputVnlVectorType
vnl_vector_fixed< TParametersValueType, Self::InputSpaceDimension > InputVnlVectorType
Definition: itkMatrixOffsetTransformBase.h:170
itk::CenteredAffineTransform
Affine transformation with a specified center of rotation.
Definition: itkCenteredAffineTransform.h:34
itk::MatrixOffsetTransformBase< TParametersValueType, VDimension, VDimension >::InputPointValueType
typename InputPointType::ValueType InputPointValueType
Definition: itkMatrixOffsetTransformBase.h:175
itk::Matrix< TParametersValueType, Self::OutputSpaceDimension, Self::InputSpaceDimension >
itk::CovariantVector
A templated class holding a n-Dimensional covariant vector.
Definition: itkCovariantVector.h:70
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::Point< TParametersValueType, Self::InputSpaceDimension >
itk::Array2D
Array2D class representing a 2D array.
Definition: itkArray2D.h:42
itk::AffineTransform::InverseTransformBaseType
typename Superclass::InverseTransformBaseType InverseTransformBaseType
Definition: itkAffineTransform.h:149