15 #ifndef __IPSDKIMAGEPROCESSING_IMAGESTRIPSPLITUTILS_H__ 16 #define __IPSDKIMAGEPROCESSING_IMAGESTRIPSPLITUTILS_H__ 20 #include <IPSDKUtil/Tools/ProcessingResult.h> 21 #include <boost/utility/enable_if.hpp> 31 template <
typename OutputDataType>
32 inline typename boost::enable_if_c<OutputDataType::g_bInput, BoolResult>::type
35 return strip.readFromImage();
37 template <
typename OutputDataType>
38 inline typename boost::disable_if_c<OutputDataType::g_bInput, BoolResult>::type
51 #endif // __IPSDKIMAGEPROCESSING_IMAGESTRIPSPLITUTILS_H__ Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Predefined types for image strips management.
Utility functions for image fragment split management.
boost::enable_if_c< OutputDataType::g_bInput, BoolResult >::type readStripFromImage(const OutputDataType &strip)
method allowing to read strip data from image for input strips types
Definition: ImageStripSplitUtils.h:33