IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
ElasticWarp2dImgLvl3.h
1 // ElasticWarp2dImgLvl3.h:
3 // -----------------------
4 //
15 
16 #ifndef __IPSDKIPLGEOMETRICTRANSFORM_ELASTICWARP2DIMGLVL3_H__
17 #define __IPSDKIPLGEOMETRICTRANSFORM_ELASTICWARP2DIMGLVL3_H__
18 
21 
22 // Attributes headers
23 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/SubImage/Input/2d/InSubRealImg2d.h>
24 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InRealYStrip2d1.h>
25 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InRealYStrip2d2.h>
26 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/OutYStrip2d.h>
27 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Enumerate/InInterpolationPolicy.h>
28 
29 namespace ipsdk {
30 namespace imaproc {
31 namespace gtrans {
32 
35 
36 // declare processing algorithm
37 IPSDK_DECLARE_PROCESSING_ALGORITHM(IPSDKIPLGeometricTransform, ElasticWarp2dImg,
39  (((ipsdk)(imaproc)(attr))(InSubRealImg2d))
40  (((ipsdk)(imaproc)(attr))(InRealYStrip2d1))
41  (((ipsdk)(imaproc)(attr))(InRealYStrip2d2))
42  (((ipsdk)(imaproc)(attr))(InInterpolationPolicy))
43  (((ipsdk)(imaproc)(attr))(OutYStrip2d)))
44 
45  // implementation of image processing data identifier retrieval method
46  // for function selector usage
47  IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(((STRIP)(OutYStrip2d)));
48 
49  // declaration of parsed data during processing
50  IPSDK_DECLARE_ALGORITHM_PARSED_DATA(((LINESTRIP)(InRealYStrip2d1))
51  ((LINESTRIP)(InRealYStrip2d2))
52  ((LINESTRIP)(OutYStrip2d)));
53 
54 // methods
55 public:
56 
57 protected:
58 
60  template <typename T, ipsdk::eInstructionSet::domain IS>
61  ipsdk::BoolResult genericProcessFunction(const ipsdk::processor::ProcessingInfo& info);
62 
64  template <typename TIn, typename TOut, ipsdk::eInstructionSet::domain IS>
65  ipsdk::BoolResult specificProcessFunction(const ipsdk::processor::ProcessingInfo& info);
66 
67 // attributes
68 protected:
69 
70 };
71 
74 
75 } // end of namespace gtrans
76 } // end of namespace imaproc
77 } // end of namespace ipsdk
78 
79 #endif // __IPSDKIPLGEOMETRICTRANSFORM_ELASTICWARP2DIMGLVL3_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)