ITK  4.8.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
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 
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:
107  const OutputVectorType & offset);
108  FixedCenterOfRotationAffineTransform(unsigned int outputSpaceDimension,
109  unsigned int parametersDimension);
112 
115 
116 private:
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::ParametersType ParametersType
const Self & operator=(const Self &)
Superclass::MatrixType MatrixType
Light weight base class for most itk classes.
Superclass::OutputCovariantVectorType OutputCovariantVectorType
Superclass::OutputCovariantVectorType OutputCovariantVectorType
Superclass::InverseMatrixType InverseMatrixType
Superclass::InputCovariantVectorType InputCovariantVectorType
ScalableAffineTransform< TParametersValueType, NDimensions > Superclass
Affine transformation with a specified center of rotation.
Superclass::InputPointType InputPointType
Superclass::TranslationType TranslationType
Superclass::OutputVnlVectorType OutputVnlVectorType
Superclass::OutputVectorType OutputVectorType
Superclass::OutputPointType OutputPointType
Superclass::JacobianType JacobianType
Superclass::InputVnlVectorType InputVnlVectorType
Superclass::OffsetType OffsetType
Superclass::FixedParametersType FixedParametersType
Superclass::InputPointType InputPointType
Affine transformation with a specified center of rotation.
Superclass::InputVectorType InputVectorType