IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
MaskImgImgLvl3.h
1 // MaskImgImgLvl3.h:
3 // --------------------
4 //
17 
18 #ifndef __IPSDKIPLLOGICAL_MASKIMGIMGLVL3_H__
19 #define __IPSDKIPLLOGICAL_MASKIMGIMGLVL3_H__
20 
23 
24 // Attributes headers
25 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InYStrip2d1.h>
26 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InYStrip2d2.h>
27 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InMaskYStrip2d.h>
28 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/OutYStrip2d.h>
29 
30 namespace ipsdk {
31 namespace imaproc {
32 namespace logic {
33 
36 
37 // declare processing algorithm
38 IPSDK_DECLARE_PROCESSING_ALGORITHM(IPSDKIPLLogical, MaskImgImg,
39  ipsdk::imaproc::matchSize(_pInYStrip2d1, _pInYStrip2d2, _pInMaskYStrip2d, _pOutYStrip2d) &&
40  ipsdk::imaproc::matchBufferType(_pInYStrip2d1, _pInYStrip2d2, _pOutYStrip2d),
41  (((ipsdk)(imaproc)(attr))(InYStrip2d1))
42  (((ipsdk)(imaproc)(attr))(InYStrip2d2))
43  (((ipsdk)(imaproc)(attr))(InMaskYStrip2d))
44  (((ipsdk)(imaproc)(attr))(OutYStrip2d)))
45 
46  // implementation of image processing data identifier retrieval method
47  // for function selector usage
48  IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(((STRIP)(InYStrip2d1)));
49 
50  // declaration of parsed data during processing
51  IPSDK_DECLARE_ALGORITHM_PARSED_DATA(((RAWSTRIP)(InMaskYStrip2d))
52  ((RAWSTRIP)(InYStrip2d1))
53  ((RAWSTRIP)(InYStrip2d2))
54  ((RAWSTRIP)(OutYStrip2d)));
55 
56 // methods
57 public:
58 
59 protected:
61  template <typename BufType,
62  ipsdk::eInstructionSet::domain IS>
63  ipsdk::BoolResult genericProcessFunction(const ipsdk::processor::ProcessingInfo& info);
64 
65 // attributes
66 protected:
67 
68 };
69 
72 
73 } // end of namespace logic
74 } // end of namespace imaproc
75 } // end of namespace ipsdk
76 
77 #endif // __IPSDKIPLLOGICAL_MASKIMGIMGLVL3_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)