IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
Warp3dImgLvl3.h
1 // Warp3dImgLvl3.h:
3 // ----------------
4 //
14 
15 #ifndef __IPSDKIPLGEOMETRICTRANSFORM_WARP3DIMGLVL3_H__
16 #define __IPSDKIPLGEOMETRICTRANSFORM_WARP3DIMGLVL3_H__
17 
20 
21 // Attributes headers
22 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/TileColl/Tile3dColl/InTile3dColl.h>
23 #include <IPSDKIPL/IPSDKIPLGeometricTransform/Attribute/DataItem/InWarpMotionTransform3d.h>
24 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Enumerate/InInterpolationPolicy.h>
25 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/TileColl/Tile3dColl/OutTile3dColl.h>
26 
27 namespace ipsdk {
28 namespace imaproc {
29 namespace gtrans {
30 
33 
34 // declare processing algorithm
35 IPSDK_DECLARE_PROCESSING_ALGORITHM(IPSDKIPLGeometricTransform, Warp3dImg,
36  ipsdk::imaproc::matchTileCollSize(_pInTile3dColl, _pOutTile3dColl) &&
37  ipsdk::imaproc::matchBufferType(_pInTile3dColl, _pOutTile3dColl),
38  (((ipsdk)(imaproc)(attr))(InTile3dColl))
39  (((ipsdk)(imaproc)(gtrans))(InWarpMotionTransform3d))
40  (((ipsdk)(imaproc)(attr))(InInterpolationPolicy))
41  (((ipsdk)(imaproc)(attr))(OutTile3dColl)))
42 
43  // implementation of image processing data identifier retrieval method
44  // for function selector usage
45  IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(((TILECOLL)(InTile3dColl)));
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_WARP3DIMGLVL3_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)