IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
L1Norm3ImgLvl3.h
1 // L1Norm3ImgLvl3.h:
3 // --------------------
4 //
14 
15 #ifndef __IPSDKIPLARITHMETIC_L1NORM3IMGLVL3_H__
16 #define __IPSDKIPLARITHMETIC_L1NORM3IMGLVL3_H__
17 
20 
21 // Attributes headers
22 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InYStrip2d1.h>
23 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InYStrip2d2.h>
24 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InYStrip2d3.h>
25 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/OutYStrip2d.h>
26 
27 namespace ipsdk {
28 namespace imaproc {
29 namespace arithm {
30 
33 
34 // declare processing algorithm
35 IPSDK_DECLARE_PROCESSING_ALGORITHM(IPSDKIPLArithmetic, L1Norm3Img,
36  ipsdk::imaproc::matchSize(_pInYStrip2d1, _pInYStrip2d2, _pInYStrip2d3, _pOutYStrip2d) &&
37  ipsdk::imaproc::matchBufferType(_pInYStrip2d1, _pInYStrip2d2, _pInYStrip2d3),
38  (((ipsdk)(imaproc)(attr))(InYStrip2d1))
39  (((ipsdk)(imaproc)(attr))(InYStrip2d2))
40  (((ipsdk)(imaproc)(attr))(InYStrip2d3))
41  (((ipsdk)(imaproc)(attr))(OutYStrip2d)))
42 
43  // implementation of image processing data identifier retrieval method
44  // for function selector usage
45  IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(((STRIP)(InYStrip2d1))
46  ((STRIP)(OutYStrip2d)));
47 
48  // declaration of parsed data during processing
49  IPSDK_DECLARE_ALGORITHM_PARSED_DATA(((RAWSTRIP)(InYStrip2d1))
50  ((RAWSTRIP)(InYStrip2d2))
51  ((RAWSTRIP)(InYStrip2d3))
52  ((RAWSTRIP)(OutYStrip2d)));
53 
54 // methods
55 protected:
56 
57 protected:
59  template <typename BufInType, typename BufOutType,
60  ipsdk::eInstructionSet::domain IS>
61  ipsdk::BoolResult genericProcessFunction(const ipsdk::processor::ProcessingInfo& info);
62 
63 // attributes
64 protected:
65 
66 };
67 
70 
71 } // end of namespace arithm
72 } // end of namespace imaproc
73 } // end of namespace ipsdk
74 
75 #endif // __IPSDKIPLARITHMETIC_L1NORM3IMGLVL3_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)