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