IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
LUTTransform2dImgLvl3.h
1 // LUTTransform2dImgLvl3.h:
3 // --------------------
4 //
14 
15 #ifndef __IPSDKIPLINTENSITYTRANSFORM_LUTTRANSFORM2DIMGLVL3_H__
16 #define __IPSDKIPLINTENSITYTRANSFORM_LUTTRANSFORM2DIMGLVL3_H__
17 
20 
21 // Attributes headers
22 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InYStrip2d.h>
23 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/DataItem/InIntensityLUT.h>
24 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/OutYStrip2d.h>
25 
26 namespace ipsdk {
27 namespace imaproc {
28 namespace itrans {
29 
32 
33 // declare processing algorithm
34 IPSDK_DECLARE_PROCESSING_ALGORITHM(IPSDKIPLIntensityTransform, LUTTransform2dImg,
35  ipsdk::imaproc::matchSize(_pInYStrip2d, _pOutYStrip2d),
36  (((ipsdk)(imaproc)(attr))(InYStrip2d))
37  (((ipsdk)(imaproc)(attr))(InIntensityLUT))
38  (((ipsdk)(imaproc)(attr))(OutYStrip2d)))
39 
40  // implementation of image processing data identifier retrieval method
41  // for function selector usage
42  IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(((STRIP)(InYStrip2d))
43  ((STRIP)(OutYStrip2d)));
44 
45  // declaration of parsed data during processing
46  IPSDK_DECLARE_ALGORITHM_PARSED_DATA(((RAWSTRIP)(InYStrip2d))
47  ((RAWSTRIP)(OutYStrip2d)));
48 
49 // methods
50 protected:
51 
52 protected:
54  template <typename InBufType, typename OutBufType, ipsdk::eInstructionSet::domain IS>
55  ipsdk::BoolResult genericProcessFunction(const ipsdk::processor::ProcessingInfo& info);
56 
57 // attributes
58 protected:
59 
60 };
61 
64 
65 } // end of namespace itrans
66 } // end of namespace imaproc
67 } // end of namespace ipsdk
68 
69 #endif // __IPSDKIPLINTENSITYTRANSFORM_LUTTRANSFORM2DIMGLVL3_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)