00001 /*========================================================================= 00002 00003 Program: 3DMed 00004 Date: $Date: 2014-02-25 18:30:00 +0800 $ 00005 Version: $Version: 4.6.0 $ 00006 Copyright: MIPG, Institute of Automation, Chinese Academy of Sciences 00007 00008 =========================================================================*/ 00009 00010 00011 #ifndef __mitkTranslationTransform_h 00012 #define __mitkTranslationTransform_h 00013 00014 #include "mitkTransform.h" 00015 00016 00031 class MITK_REGISTRATION_API mitkTranslationTransform : public mitkTransform 00032 { 00033 public: 00034 MITK_TYPE(mitkTranslationTransform, mitkTransform) 00035 virtual void PrintSelf(ostream &os); 00036 00040 mitkTranslationTransform(); 00041 00045 mitkTranslationTransform(unsigned int dim); 00046 00052 const MatrixType & GetJacobian(const VectorParameterType& inPoint); 00053 00058 virtual void ConvertTransformMaxtrixToVector(); 00059 00065 void GetTranslations(ScalarParameterType &tx, ScalarParameterType &ty); 00066 00073 void GetTranslations(ScalarParameterType &tx, ScalarParameterType &ty, ScalarParameterType &tz); 00074 00075 protected: 00076 virtual ~mitkTranslationTransform(); 00077 virtual void ComputeTransformMatrix(); 00078 virtual bool Execute(); 00079 00080 private: 00081 mitkTranslationTransform(const mitkTranslationTransform&); 00082 void operator = (const mitkTranslationTransform&); 00083 00084 }; 00085 00086 00087 //#define DEFINED_mitkTranslationTransform 00088 00089 00090 00091 #endif 00092