TuttleOFX  1
TuttleOFX/libraries/tuttle/src/tuttle/plugin/image.hpp
Go to the documentation of this file.
00001 #ifndef _TUTTLE_PLUGIN_IMAGE_HPP_
00002 #define _TUTTLE_PLUGIN_IMAGE_HPP_
00003 
00004 namespace tuttle {
00005 namespace plugin {
00006 
00007 enum EImageOrientation
00008 {
00009         eImageOrientationIndependant, //< Use memory order if your process is idenpendant image order
00010         eImageOrientationFromTopToBottom, //< Use image orientation from top to bottom
00011         eImageOrientationFromBottomToTop //< Use image orientation from bottom to top
00012 };
00013 
00014 }
00015 }
00016 
00017 #endif
00018