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

itkCenteredRigid2DTransform.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkCenteredRigid2DTransform.h,v $
00005   Language:  C++
00006   Date:      $Date: 2008-10-07 12:04:59 $
00007   Version:   $Revision: 1.15 $
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 
00018 #ifndef __itkCenteredRigid2DTransform_h
00019 #define __itkCenteredRigid2DTransform_h
00020 
00021 #include <iostream>
00022 #include "itkRigid2DTransform.h"
00023 
00024 namespace itk
00025 {
00026 
00052 template < class TScalarType=double >    // Data type for scalars
00053 class ITK_EXPORT CenteredRigid2DTransform : 
00054             public Rigid2DTransform< TScalarType > 
00055 {
00056 public:
00058   typedef CenteredRigid2DTransform          Self;
00059   typedef Rigid2DTransform< TScalarType >   Superclass;
00060   typedef SmartPointer<Self>                Pointer;
00061   typedef SmartPointer<const Self>          ConstPointer;
00062 
00064   itkNewMacro( Self );
00065 
00067   itkTypeMacro( CenteredRigid2DTransform, Rigid2DTransform );
00068 
00070   itkStaticConstMacro(SpaceDimension, unsigned int, 2);
00071   itkStaticConstMacro(OutputSpaceDimension, unsigned int, 2);
00072   itkStaticConstMacro(ParametersDimension, unsigned int, 5);
00074 
00076   typedef typename Superclass::ScalarType  ScalarType;
00077 
00079   typedef typename Superclass::ParametersType  ParametersType;
00080 
00082   typedef typename Superclass::JacobianType  JacobianType;
00083 
00085   typedef typename Superclass::OffsetType  OffsetType;
00086 
00088   typedef typename Superclass::InputPointType   InputPointType;
00089   typedef typename Superclass::OutputPointType  OutputPointType;
00090 
00092   typedef typename Superclass::InputVectorType   InputVectorType;
00093   typedef typename Superclass::OutputVectorType  OutputVectorType;
00094 
00096   typedef typename Superclass::InputCovariantVectorType   
00097                                                 InputCovariantVectorType;
00098   typedef typename Superclass::OutputCovariantVectorType  
00099                                                 OutputCovariantVectorType;
00100 
00102   typedef typename Superclass::InputVnlVectorType   InputVnlVectorType;
00103   typedef typename Superclass::OutputVnlVectorType  OutputVnlVectorType;
00104 
00113   void SetParameters( const ParametersType & parameters );
00114 
00123   const ParametersType & GetParameters( void ) const;
00124 
00129   const JacobianType & GetJacobian(const InputPointType  &point ) const;
00130 
00133   virtual void SetFixedParameters( const ParametersType & );
00134 
00137   virtual const ParametersType& GetFixedParameters(void) const;
00138 
00142   void CloneInverseTo( Pointer & newinverse ) const;
00143 
00147   void CloneTo( Pointer & clone ) const;
00148 
00149 protected:
00150   CenteredRigid2DTransform();
00151   ~CenteredRigid2DTransform(){};
00152 
00153   CenteredRigid2DTransform( unsigned int outputSpaceDimension, 
00154                             unsigned int parametersDimension);
00155 
00156   void PrintSelf(std::ostream &os, Indent indent) const;
00157 
00158 private:
00159   CenteredRigid2DTransform(const Self&); //purposely not implemented
00160   void operator=(const Self&); //purposely not implemented
00161 
00162 }; //class CenteredRigid2DTransform
00163 
00164 
00165 }  // namespace itk
00166 
00168 #define ITK_TEMPLATE_CenteredRigid2DTransform(_, EXPORT, x, y) namespace itk { \
00169   _(1(class EXPORT CenteredRigid2DTransform< ITK_TEMPLATE_1 x >)) \
00170   namespace Templates { typedef CenteredRigid2DTransform< ITK_TEMPLATE_1 x > \
00171                                             CenteredRigid2DTransform##y; } \
00172   }
00173 
00174 
00175 #if ITK_TEMPLATE_EXPLICIT
00176 # include "Templates/itkCenteredRigid2DTransform+-.h"
00177 #endif
00178 
00179 #if ITK_TEMPLATE_TXX
00180 # include "itkCenteredRigid2DTransform.txx"
00181 #endif
00182 
00183 #endif /* __itkCenteredRigid2DTransform_h */
00184 

Generated at Wed Nov 5 20:46:27 2008 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000