ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkVersorRigid3DTransform.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 itkVersorRigid3DTransform_h
19#define itkVersorRigid3DTransform_h
20
21#include <iostream>
22#include "itkVersorTransform.h"
23
24namespace itk
25{
45template <typename TParametersValueType = double>
46class ITK_TEMPLATE_EXPORT VersorRigid3DTransform : public VersorTransform<TParametersValueType>
47{
48public:
50
56
58 itkNewMacro(Self);
59
62
64 static constexpr unsigned int SpaceDimension = 3;
65 static constexpr unsigned int InputSpaceDimension = 3;
66 static constexpr unsigned int OutputSpaceDimension = 3;
67 static constexpr unsigned int ParametersDimension = 6;
68
70 using typename Superclass::ScalarType;
71 using typename Superclass::ParametersType;
73 using typename Superclass::JacobianType;
76 using typename Superclass::InputPointType;
77 using typename Superclass::OutputPointType;
78 using typename Superclass::InputVectorType;
79 using typename Superclass::OutputVectorType;
80 using typename Superclass::InputVnlVectorType;
84 using typename Superclass::MatrixType;
85 using typename Superclass::InverseMatrixType;
86 using typename Superclass::CenterType;
87 using typename Superclass::OffsetType;
88 using typename Superclass::TranslationType;
89
91 using typename Superclass::VersorType;
93
94 using typename Superclass::AxisType;
95 using typename Superclass::AngleType;
96
97 using typename Superclass::AxisValueType;
100
102
107 void
108 SetParameters(const ParametersType & parameters) override;
109
110 const ParametersType &
111 GetParameters() const override;
112
120 void
121 UpdateTransformParameters(const DerivativeType & update, TParametersValueType factor = 1.0) override;
122
127 void
129
130protected:
131#if !defined(ITK_LEGACY_REMOVE)
132 [[deprecated("Removed unused constructor")]] VersorRigid3DTransform(const MatrixType & matrix,
133 const OutputVectorType & offset);
134#endif
135 VersorRigid3DTransform(unsigned int paramDim);
137 ~VersorRigid3DTransform() override = default;
138
139 void
140 PrintSelf(std::ostream & os, Indent indent) const override;
141}; // class VersorRigid3DTransform
142} // namespace itk
143
144#ifndef ITK_MANUAL_INSTANTIATION
145# include "itkVersorRigid3DTransform.hxx"
146#endif
147
148#endif /* itkVersorRigid3DTransform_h */
OptimizerParameters< FixedParametersValueType > FixedParametersType
OptimizerParameters< ParametersValueType > ParametersType
itkOverrideGetNameOfClassMacro(TransformBaseTemplate)
ITK_DISALLOW_COPY_AND_MOVE(TransformBaseTemplate)
Array class with size defined at construction time.
Definition itkArray.h:48
Control indentation during Print() invocation.
Definition itkIndent.h:50
Point< TParametersValueType, Self::InputSpaceDimension > InputPointType
Vector< TParametersValueType, Self::OutputSpaceDimension > OutputVectorType
Matrix< TParametersValueType, Self::InputSpaceDimension, Self::OutputSpaceDimension > InverseMatrixType
Matrix< TParametersValueType, Self::OutputSpaceDimension, Self::InputSpaceDimension > MatrixType
Implements transparent reference counting.
Matrix< TParametersValueType, Self::OutputSpaceDimension, Self::InputSpaceDimension > MatrixType
Point< TParametersValueType, VOutputDimension > OutputPointType
CovariantVector< TParametersValueType, VOutputDimension > OutputCovariantVectorType
vnl_vector_fixed< TParametersValueType, VInputDimension > InputVnlVectorType
Point< TParametersValueType, VInputDimension > InputPointType
CovariantVector< TParametersValueType, VInputDimension > InputCovariantVectorType
Vector< TParametersValueType, VInputDimension > InputVectorType
Vector< TParametersValueType, VOutputDimension > OutputVectorType
vnl_vector_fixed< TParametersValueType, VOutputDimension > OutputVnlVectorType
const ParametersType & GetParameters() const override
VersorRigid3DTransform(unsigned int paramDim)
void ComputeJacobianWithRespectToParameters(const InputPointType &p, JacobianType &jacobian) const override
void SetParameters(const ParametersType &parameters) override
void PrintSelf(std::ostream &os, Indent indent) const override
void UpdateTransformParameters(const DerivativeType &update, TParametersValueType factor=1.0) override
~VersorRigid3DTransform() override=default
VersorTransform(unsigned int parametersDimension)
vnl_matrix_fixed< ParametersValueType, VInputDimension, VOutputDimension > InverseJacobianPositionType
Array2D< ParametersValueType > JacobianType
vnl_matrix_fixed< ParametersValueType, VOutputDimension, VInputDimension > JacobianPositionType
typename ParametersType::ValueType ParametersValueType
Vector< TParametersValueType, 3 > VectorType
Definition itkVersor.h:66
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....