IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
NormalizeImgLvl3.h
1 // NormalizeImgLvl3.h:
3 // --------------------
4 //
14 
15 #ifndef __IPSDKIPLINTENSITYTRANSFORM_NORMALIZEIMGLVL3_H__
16 #define __IPSDKIPLINTENSITYTRANSFORM_NORMALIZEIMGLVL3_H__
17 
20 
21 // Attributes headers
22 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InYStrip2d.h>
23 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/DataItem/InInputRange.h>
24 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/DataItem/InOutputRange.h>
25 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/OutYStrip2d.h>
26 
27 namespace ipsdk {
28 namespace imaproc {
29 namespace itrans {
30 
33 
34 // declare processing algorithm
35 IPSDK_DECLARE_PROCESSING_ALGORITHM(IPSDKIPLIntensityTransform, NormalizeImg,
36  ipsdk::imaproc::matchSize(_pInYStrip2d, _pOutYStrip2d),
37  (((ipsdk)(imaproc)(attr))(InYStrip2d))
38  (((ipsdk)(imaproc)(attr))(InInputRange))
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)(InYStrip2d))
45  ((STRIP)(OutYStrip2d)));
46 
47  // declaration of parsed data during processing
48  IPSDK_DECLARE_ALGORITHM_PARSED_DATA(((RAWSTRIP)(InYStrip2d))
49  ((RAWSTRIP)(OutYStrip2d)));
50 
51 // methods
52 protected:
53 
54 protected:
56  template <typename InBufType, typename OutBufType, ipsdk::eInstructionSet::domain IS>
57  ipsdk::BoolResult genericProcessFunction(const ipsdk::processor::ProcessingInfo& info);
58 
59 // attributes
60 protected:
61 
62 };
63 
66 
67 } // end of namespace itrans
68 } // end of namespace imaproc
69 } // end of namespace ipsdk
70 
71 #endif // __IPSDKIPLINTENSITYTRANSFORM_NORMALIZEIMGLVL3_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)