IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
Warp2dImgLvl3.h
1 // Warp2dImgLvl3.h:
3 // ----------------
4 //
14 
15 #ifndef __IPSDKIPLGEOMETRICTRANSFORM_WARP2DIMGLVL3_H__
16 #define __IPSDKIPLGEOMETRICTRANSFORM_WARP2DIMGLVL3_H__
17 
20 
21 // Attributes headers
22 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/TileColl/Tile2dColl/InTile2dColl.h>
23 #include <IPSDKIPL/IPSDKIPLGeometricTransform/Attribute/DataItem/InWarpMotionTransform2d.h>
24 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Enumerate/InInterpolationPolicy.h>
25 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/TileColl/Tile2dColl/OutTile2dColl.h>
26 
27 namespace ipsdk {
28 namespace imaproc {
29 namespace gtrans {
30 
33 
34 // declare processing algorithm
35 IPSDK_DECLARE_PROCESSING_ALGORITHM(IPSDKIPLGeometricTransform, Warp2dImg,
36  ipsdk::imaproc::matchTileCollSize(_pInTile2dColl, _pOutTile2dColl) &&
37  ipsdk::imaproc::matchBufferType(_pInTile2dColl, _pOutTile2dColl),
38  (((ipsdk)(imaproc)(attr))(InTile2dColl))
39  (((ipsdk)(imaproc)(gtrans))(InWarpMotionTransform2d))
40  (((ipsdk)(imaproc)(attr))(InInterpolationPolicy))
41  (((ipsdk)(imaproc)(attr))(OutTile2dColl)))
42 
43  // implementation of image processing data identifier retrieval method
44  // for function selector usage
45  IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(((TILECOLL)(InTile2dColl)));
46 
47  // declaration of parsed data during processing
49 
50 // methods
51 public:
52 
53 protected:
55  template <typename BufType,
56  ipsdk::eInstructionSet::domain IS>
57  ipsdk::BoolResult genericProcessFunction(const ipsdk::processor::ProcessingInfo& info);
58 
60  template <typename BufType,
61  typename NeighborhoodProcessor>
62  void interpolationProcessFunction(const ipsdk::processor::ProcessingInfo& info);
63 
64 // attributes
65 protected:
66 
67 };
68 
71 
72 } // end of namespace gtrans
73 } // end of namespace imaproc
74 } // end of namespace ipsdk
75 
76 #endif // __IPSDKIPLGEOMETRICTRANSFORM_WARP2DIMGLVL3_H__
#define IPSDK_DECLARE_ALGORITHM_NOPARSED_DATA()
Definition of import/export macro for library.
#define IPSDK_DECLARE_PROCESSING_ALGORITHM(libraryName, algoName, RuleString, attributeSeq)
#define IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(dataTypeSeq)