IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
Zoom3dImgLvl3.h
1 // Zoom3dImgLvl3.h:
3 // --------------
4 //
13 
14 #ifndef __IPSDKIPLGEOMETRICTRANSFORM_ZOOM3DIMGLVL3_H__
15 #define __IPSDKIPLGEOMETRICTRANSFORM_ZOOM3DIMGLVL3_H__
16 
19 
20 // Attributes headers
21 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/DataItem/InScaleFactor3d.h>
22 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Enumerate/InZoomInterpolationMethod.h>
23 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/ZStrip3d/InZStrip3d.h>
24 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/ZStrip3d/OutZStrip3d.h>
25 
26 namespace ipsdk {
27 namespace imaproc {
28 namespace gtrans {
29 
32 
33 // declare processing algorithm
34 IPSDK_DECLARE_PROCESSING_ALGORITHM(IPSDKIPLGeometricTransform, Zoom3dImg,
36  (((ipsdk)(imaproc)(attr))(InZStrip3d))
37  (((ipsdk)(imaproc)(attr))(InZoomInterpolationMethod))
38  (((ipsdk)(imaproc)(attr))(InScaleFactor3d))
39  (((ipsdk)(imaproc)(attr))(OutZStrip3d)))
40 
41  // implementation of image processing data identifier retrieval method
42  // for function selector usage
43  IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(((STRIP)(InZStrip3d))
44  ((STRIP)(OutZStrip3d)));
45 
46  // declaration of parsed data during processing
48 
49 // methods
50 public:
51 
52 protected:
54  template <typename BufInType, typename BufOutType, ipsdk::eInstructionSet::domain IS>
55  ipsdk::BoolResult genericProcessFunction(const ipsdk::processor::ProcessingInfo& info);
56 
58  template <typename BufInType, typename BufOutType, ipsdk::eInstructionSet::domain IS>
59  ipsdk::BoolResult nearestNeighbourProcessFunction(const ipsdk::processor::ProcessingInfo& info);
60 
62  template <typename BufInType, typename BufOutType, ipsdk::eInstructionSet::domain IS, ipUInt64 K, class Interpolator>
63  ipsdk::BoolResult continousInterpolProcessFunction(const ipsdk::processor::ProcessingInfo& info);
64 
66  template <typename BufInType, typename BufOutType, ipsdk::eInstructionSet::domain IS>
67  ipsdk::BoolResult volumeWeightedMeanProcessFunction(const ipsdk::processor::ProcessingInfo& info);
68 
69 // attributes
70 protected:
71 
72 };
73 
76 
77 } // end of namespace gtrans
78 } // end of namespace imaproc
79 } // end of namespace ipsdk
80 
81 #endif // __IPSDKIPLGEOMETRICTRANSFORM_ZOOM3DIMGLVL3_H__
#define IPSDK_DECLARE_ALGORITHM_NOPARSED_DATA()
IPSDKBASEPROCESSING_API RulePtr none()
Definition of import/export macro for library.
#define IPSDK_DECLARE_PROCESSING_ALGORITHM(libraryName, algoName, RuleString, attributeSeq)
#define IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(dataTypeSeq)