IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
GaussianRandomImgLvl3.h
1 // GaussianRandomImgLvl3.h:
3 // ------------------------
4 //
15 
16 #ifndef __IPSDKIPLUTILITY_GAUSSIANRANDOMIMGLVL3_H__
17 #define __IPSDKIPLUTILITY_GAUSSIANRANDOMIMGLVL3_H__
18 
21 
22 // Attributes headers
23 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/DataItem/InGaussianParameter.h>
24 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/OutYStrip2d.h>
25 
26 namespace ipsdk {
27 namespace imaproc {
28 namespace util {
29 
32 
33 // declare processing algorithm
34 IPSDK_DECLARE_PROCESSING_ALGORITHM(IPSDKIPLUtility, GaussianRandomImg,
36  (((ipsdk)(imaproc)(attr))(InGaussianParameter))
37  (((ipsdk)(imaproc)(attr))(OutYStrip2d)))
38 
39  // implementation of image processing data identifier retrieval method
40  // for function selector usage
41  IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(((STRIP)(OutYStrip2d)));
42 
43  // declaration of parsed data during processing
44  IPSDK_DECLARE_ALGORITHM_PARSED_DATA(((RAWSTRIP)(OutYStrip2d)));
45 
46 // methods
47 public:
48 
49 protected:
50 
52  template <typename BufType,
53  ipsdk::eInstructionSet::domain IS>
54  ipsdk::BoolResult genericProcessFunction(const ipsdk::processor::ProcessingInfo& info);
55 
56 // attributes
57 protected:
58 
59 };
60 
63 
64 } // end of namespace util
65 } // end of namespace imaproc
66 } // end of namespace ipsdk
67 
68 #endif // __IPSDKIPLUTILITY_GAUSSIANRANDOMIMGLVL3_H__
IPSDKBASEPROCESSING_API RulePtr none()
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)