IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
EraseImgLvl3.h
1 // EraseImgLvl3.h:
3 // ---------------
4 //
14 
15 #ifndef __IPSDKIPLUTILITY_ERASEIMGLVL3_H__
16 #define __IPSDKIPLUTILITY_ERASEIMGLVL3_H__
17 
20 
21 // Attributes headers
22 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Value/InOptEraseValue.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, EraseImg,
35  (((ipsdk)(imaproc)(attr))(InOptEraseValue))
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)(OutYStrip2d)));
41 
42  // declaration of parsed data during processing
43  IPSDK_DECLARE_ALGORITHM_PARSED_DATA(((RAWSTRIP)(OutYStrip2d)));
44 
45 // methods
46 public:
47 
48 protected:
50  template <typename BufType, ipsdk::eInstructionSet::domain IS>
51  ipsdk::BoolResult genericProcessFunction(const ipsdk::processor::ProcessingInfo& info);
52 
53 // attributes
54 protected:
55 
56 };
57 
60 
61 } // end of namespace util
62 } // end of namespace imaproc
63 } // end of namespace ipsdk
64 
65 #endif // __IPSDKIPLUTILITY_ERASEIMGLVL3_H__
IPSDKBASEPROCESSING_API RulePtr none()
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)