ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkFixedCenterOfRotationAffineTransform.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
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 itkFixedCenterOfRotationAffineTransform_h
19 #define itkFixedCenterOfRotationAffineTransform_h
20 
22 
23 namespace itk
24 {
33 template<
34  typename TParametersValueType=double,
35  unsigned int NDimensions=3>
36 // Number of dimensions in the input space
37 class ITK_TEMPLATE_EXPORT FixedCenterOfRotationAffineTransform:
38  public ScalableAffineTransform<TParametersValueType, NDimensions>
39 {
40 public:
46 
49 
51  itkNewMacro(Self);
52 
54  itkStaticConstMacro(InputSpaceDimension, unsigned int, NDimensions);
55  itkStaticConstMacro(OutputSpaceDimension, unsigned int, NDimensions);
56  itkStaticConstMacro(SpaceDimension, unsigned int, NDimensions);
57  itkStaticConstMacro( ParametersDimension, unsigned int,
58  NDimensions * ( NDimensions + 2 ) );
60 
62  typedef typename Superclass::ParametersType ParametersType;
63  typedef typename Superclass::FixedParametersType FixedParametersType;
64  typedef typename Superclass::JacobianType JacobianType;
65  typedef typename Superclass::ScalarType ScalarType;
66  typedef typename Superclass::InputVectorType InputVectorType;
67  typedef typename Superclass::OutputVectorType OutputVectorType;
68  typedef typename Superclass::InputCovariantVectorType InputCovariantVectorType;
69  typedef typename Superclass::OutputCovariantVectorType OutputCovariantVectorType;
70  typedef typename Superclass::InputVnlVectorType InputVnlVectorType;
71  typedef typename Superclass::OutputVnlVectorType OutputVnlVectorType;
72  typedef typename Superclass::InputPointType InputPointType;
73  typedef typename Superclass::OutputPointType OutputPointType;
74  typedef typename Superclass::MatrixType MatrixType;
75  typedef typename Superclass::InverseMatrixType InverseMatrixType;
76  typedef typename Superclass::CenterType CenterType;
77  typedef typename Superclass::TranslationType TranslationType;
78  typedef typename Superclass::OffsetType OffsetType;
79 
82  { this->SetCenter(cor); }
84  { return this->GetCenter(); }
86 
89  void SetMatrixComponent(const MatrixType & matrix)
90  { this->SetMatrix(matrix); }
91 
94  { return this->GetMatrix(); }
95 
97  void SetOffsetComponent(const OffsetType & offset)
98  { this->SetTranslation(offset); }
99 
101  const OffsetType & GetOffsetComponent(void) const
102  { return this->GetTranslation(); }
103 
104 protected:
106  FixedCenterOfRotationAffineTransform(const MatrixType & matrix,
107  const OutputVectorType & offset);
108  FixedCenterOfRotationAffineTransform(unsigned int outputSpaceDimension,
109  unsigned int parametersDimension);
112 
114  virtual ~FixedCenterOfRotationAffineTransform() ITK_OVERRIDE;
115 
116 private:
117  FixedCenterOfRotationAffineTransform(const Self & other);
118  const Self & operator=(const Self &);
119 }; //class FixedCenterOfRotationAffineTransform
120 } // namespace itk
121 
122 #ifndef ITK_MANUAL_INSTANTIATION
123 #include "itkFixedCenterOfRotationAffineTransform.hxx"
124 #endif
125 
126 #endif /* itkFixedCenterOfRotationAffineTransform_h */
Superclass::MatrixType MatrixType
Light weight base class for most itk classes.
Superclass::OutputCovariantVectorType OutputCovariantVectorType
ScalableAffineTransform< TParametersValueType, NDimensions > Superclass
Affine transformation with a specified center of rotation.
Superclass::OffsetType OffsetType
Superclass::InputPointType InputPointType
Affine transformation with a specified center of rotation.