Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkCenteredEuler3DTransform.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkCenteredEuler3DTransform.h,v $
00005   Language:  C++
00006   Date:      $Date: 2005/03/09 16:46:13 $
00007   Version:   $Revision: 1.5 $
00008 
00009   Copyright (c) Insight Software Consortium. All rights reserved.
00010   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
00011 
00012      This software is distributed WITHOUT ANY WARRANTY; without even 
00013      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00014      PURPOSE.  See the above copyright notices for more information.
00015 
00016 =========================================================================*/
00017 #ifndef __itkCenteredEuler3DTransform_h
00018 #define __itkCenteredEuler3DTransform_h
00019 
00020 #include <iostream>
00021 #include "itkEuler3DTransform.h"
00022 #include "itkExceptionObject.h"
00023 #include "itkMatrix.h"
00024 #include "itkVersor.h"
00025 
00026 namespace itk
00027 {
00028 
00036 template < class TScalarType=double >    // Data type for scalars 
00037 class ITK_EXPORT CenteredEuler3DTransform : 
00038         public Euler3DTransform< TScalarType >
00039 {
00040 public:
00042   typedef CenteredEuler3DTransform Self;
00043   typedef Euler3DTransform< TScalarType > Superclass;
00044   typedef SmartPointer<Self>        Pointer;
00045   typedef SmartPointer<const Self>  ConstPointer;
00046   
00048   itkTypeMacro( CenteredEuler3DTransform, Euler3DTransform );
00049 
00051   itkNewMacro( Self );
00052 
00054   itkStaticConstMacro(SpaceDimension, unsigned int, 3);
00055   itkStaticConstMacro(InputSpaceDimension, unsigned int, 3);
00056   itkStaticConstMacro(OutputSpaceDimension, unsigned int, 3);
00057   itkStaticConstMacro(ParametersDimension, unsigned int, 9);
00058 
00059   typedef typename Superclass::ParametersType             ParametersType;
00060   typedef typename Superclass::JacobianType               JacobianType;
00061   typedef typename Superclass::ScalarType                 ScalarType;
00062   typedef typename Superclass::InputVectorType            InputVectorType;
00063   typedef typename Superclass::OutputVectorType           OutputVectorType;
00064   typedef typename Superclass::InputCovariantVectorType  
00065                                                      InputCovariantVectorType;
00066   typedef typename Superclass::OutputCovariantVectorType  
00067                                                      OutputCovariantVectorType;
00068   typedef typename Superclass::InputVnlVectorType         InputVnlVectorType;
00069   typedef typename Superclass::OutputVnlVectorType        OutputVnlVectorType;
00070   typedef typename Superclass::InputPointType             InputPointType;
00071   typedef typename Superclass::OutputPointType            OutputPointType;
00072   typedef typename Superclass::MatrixType                 MatrixType;
00073   typedef typename Superclass::InverseMatrixType          InverseMatrixType;
00074   typedef typename Superclass::CenterType                 CenterType;
00075   typedef typename Superclass::TranslationType            TranslationType;
00076   typedef typename Superclass::OffsetType                 OffsetType;
00077 
00082   void SetParameters( const ParametersType & parameters );
00083 
00088   const ParametersType & GetParameters( void ) const;
00089 
00094   const JacobianType & GetJacobian(const InputPointType  &point ) const;
00095 
00096 protected:
00097   CenteredEuler3DTransform();
00098   CenteredEuler3DTransform(unsigned int SpaceDimension,
00099                            unsigned int ParametersDimension);
00100   CenteredEuler3DTransform(const MatrixType & matrix,
00101                            const OutputVectorType & offset);
00102   ~CenteredEuler3DTransform();
00103 
00107   void PrintSelf(std::ostream &os, Indent indent) const;
00108 
00109 private:
00110   CenteredEuler3DTransform(const Self&); //purposely not implemented
00111   void operator=(const Self&); //purposely not implemented
00112 
00113 }; //class CenteredEuler3DTransform
00114 
00115 
00116 }  // namespace itk
00117 
00118 
00119 #ifndef ITK_MANUAL_INSTANTIATION
00120 #include "itkCenteredEuler3DTransform.txx"
00121 #endif
00122 
00123 #endif /* __itkCenteredEuler3DTransform_h */

Generated at Wed May 24 22:54:41 2006 for ITK by doxygen 1.3.5 written by Dimitri van Heesch, © 1997-2000