IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
PolarToCartesianImgLvl3.h
1 // PolarToCartesianImgLvl3.h:
3 // --------------------------
4 //
14 
15 #ifndef __IPSDKIPLARITHMETIC_POLARTOCARTESIANIMGLVL3_H__
16 #define __IPSDKIPLARITHMETIC_POLARTOCARTESIANIMGLVL3_H__
17 
20 
21 // Attributes headers
22 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InRhoYStrip2d.h>
23 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InThetaYStrip2d.h>
24 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/OutXYStrip2d.h>
25 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/OutYYStrip2d.h>
26 
27 namespace ipsdk {
28 namespace imaproc {
29 namespace arithm {
30 
33 
34 // declare processing algorithm
35 IPSDK_DECLARE_PROCESSING_ALGORITHM(IPSDKIPLArithmetic, PolarToCartesianImg,
36  ipsdk::imaproc::matchSize(_pInRhoYStrip2d, _pInThetaYStrip2d, _pOutXYStrip2d, _pOutYYStrip2d),
37  (((ipsdk)(imaproc)(attr))(InRhoYStrip2d))
38  (((ipsdk)(imaproc)(attr))(InThetaYStrip2d))
39  (((ipsdk)(imaproc)(attr))(OutXYStrip2d))
40  (((ipsdk)(imaproc)(attr))(OutYYStrip2d)))
41 
42  // implementation of image processing data identifier retrieval method
43  // for function selector usage
45 
46  // declaration of parsed data during processing
47  IPSDK_DECLARE_ALGORITHM_PARSED_DATA(((RAWSTRIP)(InRhoYStrip2d))
48  ((RAWSTRIP)(InThetaYStrip2d))
49  ((RAWSTRIP)(OutXYStrip2d))
50  ((RAWSTRIP)(OutYYStrip2d)));
51 
52 // methods
53 public:
54 
55 protected:
57  template <ipsdk::eInstructionSet::domain IS>
58  ipsdk::BoolResult genericProcessFunction(const ipsdk::processor::ProcessingInfo& info);
59 
60 // attributes
61 protected:
62 
63 };
64 
67 
68 } // end of namespace arithm
69 } // end of namespace imaproc
70 } // end of namespace ipsdk
71 
72 #endif // __IPSDKIPLARITHMETIC_POLARTOCARTESIANIMGLVL3_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_NOTYPE_ALGORITHM_FUNCTION_SELECTOR()