IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
ConvertImgLvl3.h
1 // ConvertImgLvl3.h:
3 // -----------------
4 //
14 
15 #ifndef __IPSDKIPLUTILITY_CONVERTIMGLVL3_H__
16 #define __IPSDKIPLUTILITY_CONVERTIMGLVL3_H__
17 
20 
21 // Attributes headers
22 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InYStrip2d.h>
23 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/OutYStrip2d.h>
24 
25 namespace ipsdk {
26 namespace imaproc {
27 namespace util {
28 
31 
32 // declare processing algorithm
33 IPSDK_DECLARE_PROCESSING_ALGORITHM(IPSDKIPLUtility, ConvertImg,
34  ipsdk::imaproc::matchSize(_pInYStrip2d, _pOutYStrip2d),
35  (((ipsdk)(imaproc)(attr))(InYStrip2d))
36  (((ipsdk)(imaproc)(attr))(OutYStrip2d)))
37 
38  // implementation of image processing data identifier retrieval method
39  // for function selector usage
40  IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(((STRIP)(InYStrip2d))
41  ((STRIP)(OutYStrip2d)));
42 
43  // declaration of parsed data during processing
44  IPSDK_DECLARE_ALGORITHM_PARSED_DATA(((RAWSTRIP)(InYStrip2d))
45  ((RAWSTRIP)(OutYStrip2d)));
46 
47 // methods
48 public:
49 
50 protected:
52  template <typename InBufType, typename OutBufType,
53  ipsdk::eInstructionSet::domain IS>
54  ipsdk::BoolResult genericProcessFunction(const ipsdk::processor::ProcessingInfo& info);
55 
56 // attributes
57 protected:
58 
59 };
60 
63 
64 } // end of namespace util
65 } // end of namespace imaproc
66 } // end of namespace ipsdk
67 
68 #endif // __IPSDKIPLUTILITY_CONVERTIMGLVL3_H__
Definition of import/export macro for library.
#define IPSDK_DECLARE_PROCESSING_ALGORITHM(libraryName, algoName, RuleString, attributeSeq)
#define IPSDK_DECLARE_ALGORITHM_PARSED_DATA(dataSeq)
#define IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(dataTypeSeq)