IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BitwiseNotImgLvl3.h
1 // BitwiseNotImgLvl3.h:
3 // --------------------
4 //
14 
15 #ifndef __IPSDKIPLLOGICAL_BITWISENOTIMGLVL3_H__
16 #define __IPSDKIPLLOGICAL_BITWISENOTIMGLVL3_H__
17 
20 
21 // Attributes headers
22 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InIntYStrip2d.h>
23 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/OutYStrip2d.h>
24 
25 namespace ipsdk {
26 namespace imaproc {
27 namespace logic {
28 
31 
32 // declare processing algorithm
33 IPSDK_DECLARE_PROCESSING_ALGORITHM(IPSDKIPLLogical, BitwiseNotImg,
34  ipsdk::imaproc::matchSizeAndType(_pInIntYStrip2d, _pOutYStrip2d),
35  (((ipsdk)(imaproc)(attr))(InIntYStrip2d))
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)(InIntYStrip2d)));
41 
42  // declaration of parsed data during processing
43  IPSDK_DECLARE_ALGORITHM_PARSED_DATA(((RAWSTRIP)(InIntYStrip2d))
44  ((RAWSTRIP)(OutYStrip2d)));
45 
46 // methods
47 public:
48 
49 protected:
51  template <typename BufType, ipsdk::eInstructionSet::domain IS>
52  ipsdk::BoolResult genericProcessFunction(const ipsdk::processor::ProcessingInfo& info);
53 
54 // attributes
55 protected:
56 
57 };
58 
61 
62 } // end of namespace logic
63 } // end of namespace imaproc
64 } // end of namespace ipsdk
65 
66 #endif // __IPSDKIPLLOGICAL_BITWISENOTIMGLVL3_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)