IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
RandomImgLvl3.h
1 // RandomImgLvl3.h:
3 // --------------------
4 //
16 
17 #ifndef __IPSDKIPLUTILITY_RANDOMIMGLVL3_H__
18 #define __IPSDKIPLUTILITY_RANDOMIMGLVL3_H__
19 
22 
23 // Attributes headers
24 // Attributes headers
25 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/DataItem/InOutputRange.h>
26 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/OutYStrip2d.h>
27 
28 namespace ipsdk {
29 namespace imaproc {
30 namespace util {
31 
34 
35 // declare processing algorithm
36 IPSDK_DECLARE_PROCESSING_ALGORITHM(IPSDKIPLUtility, RandomImg,
37  ((matchStripRange<ipsdk::imaproc::attr::Range::Min>(_pOutYStrip2d, _pInOutputRange)) &&
38  (matchStripRange<ipsdk::imaproc::attr::Range::Max>(_pOutYStrip2d, _pInOutputRange))),
39  (((ipsdk)(imaproc)(attr))(InOutputRange))
40  (((ipsdk)(imaproc)(attr))(OutYStrip2d)))
41 
42  // implementation of image processing data identifier retrieval method
43  // for function selector usage
44  IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(((STRIP)(OutYStrip2d)));
45 
46  // declaration of parsed data during processing
47  IPSDK_DECLARE_ALGORITHM_PARSED_DATA(((RAWSTRIP)(OutYStrip2d)));
48 
49 // methods
50 public:
51 
52 protected:
54  template <typename BufType,
55  ipsdk::eInstructionSet::domain IS>
56  ipsdk::BoolResult genericProcessFunction(const ipsdk::processor::ProcessingInfo& info);
57 
58 // attributes
59 protected:
60 
61 };
62 
65 
66 } // end of namespace util
67 } // end of namespace imaproc
68 } // end of namespace ipsdk
69 
70 #endif // __IPSDKIPLUTILITY_RANDOMIMGLVL3_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)