IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
MaxAbsImgImgLvl3.h
1 // MaxAbsImgImgLvl3.h:
3 // --------------------
4 //
15 
16 #ifndef __IPSDKIPLARITHMETIC_MAXABSIMGIMGLVL3_H__
17 #define __IPSDKIPLARITHMETIC_MAXABSIMGIMGLVL3_H__
18 
21 
22 // Attributes headers
23 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InYStrip2d1.h>
24 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InYStrip2d2.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, MaxAbsImgImg,
36  ipsdk::imaproc::matchSize(_pInYStrip2d1, _pInYStrip2d2, _pOutYStrip2d),
37  (((ipsdk)(imaproc)(attr))(InYStrip2d1))
38  (((ipsdk)(imaproc)(attr))(InYStrip2d2))
39  (((ipsdk)(imaproc)(attr))(OutYStrip2d)))
40 
41  // implementation of image processing data identifier retrieval method
42  // for function selector usage
43  IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(((STRIP)(InYStrip2d1))
44  ((STRIP)(InYStrip2d2))
45  ((STRIP)(OutYStrip2d)));
46 
47  // declaration of parsed data during processing
48  IPSDK_DECLARE_ALGORITHM_PARSED_DATA(((RAWSTRIP)(InYStrip2d1))
49  ((RAWSTRIP)(InYStrip2d2))
50  ((RAWSTRIP)(OutYStrip2d)));
51 
52 // methods
53 public:
54 
55 protected:
57  template <typename BufIn1Type, typename BufIn2Type, typename BufOutType,
58  ipsdk::eInstructionSet::domain IS>
59  ipsdk::BoolResult genericProcessFunction(const ipsdk::processor::ProcessingInfo& info);
60 
61 // attributes
62 protected:
63 
64 };
65 
68 
69 } // end of namespace arithm
70 } // end of namespace imaproc
71 } // end of namespace ipsdk
72 
73 #endif // __IPSDKIPLARITHMETIC_MAXABSIMGIMGLVL3_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)