Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #ifndef __cmtkTransformChangeFromSpaceAffine_h_included_
00034 #define __cmtkTransformChangeFromSpaceAffine_h_included_
00035
00036 #include <cmtkconfig.h>
00037
00038 #include <Base/cmtkAffineXform.h>
00039 #include <Base/cmtkUniformVolume.h>
00040
00041 #include <string>
00042
00043 namespace
00044 cmtk
00045 {
00046
00049
00051 class TransformChangeFromSpaceAffine
00052 {
00053 public:
00055 TransformChangeFromSpaceAffine( const AffineXform& xform,
00056 const UniformVolume& reference,
00057 const UniformVolume& floating,
00058 const char* forceSpace = NULL
00059 );
00060
00062 const AffineXform& GetTransformation() const
00063 {
00064 return this->m_NewXform;
00065 }
00066
00067 private:
00069 AffineXform m_NewXform;
00070 };
00071
00073
00074 }
00075
00076 #endif // #ifndef __cmtkTransformChangeFromSpaceAffine_h_included_