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 __cmtkAnatomicalOrientationBase_h_included_
00034 #define __cmtkAnatomicalOrientationBase_h_included_
00035
00036 #include <cmtkconfig.h>
00037
00038 namespace
00039 cmtk
00040 {
00041
00044
00046 class AnatomicalOrientationBase
00047 {
00048 public:
00050 typedef AnatomicalOrientationBase Self;
00051
00053 static const char *const ORIENTATION_STANDARD;
00054
00056 static const char *const SPACE_CMTK;
00057
00059 static const char *const SPACE_ITK;
00060
00065 static const char* GetClosestOrientation( const char* desiredOrientation, const char *const availableOrientations[] );
00066
00073 static bool OnSameAxis( const char from, const char to );
00074
00075 protected:
00077 static char OppositeDirection( const char direction )
00078 {
00079 const char table[27] = "PbcdefghSjkRmnoAqLItuvwxyz";
00080 return table[direction-'A'];
00081 }
00082 };
00083
00085
00086 }
00087
00088 #endif // #ifndef __cmtkAnatomicalOrientationBase_h_included_