IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
CartesianToPolarImgGpuLvl3.h
1 // PolarToCartesianImgGpuLvl3.h:
3 // --------------
4 //
14 
15 # ifndef __IPSDKIPLARITHMETIC_POLARTOCARTESIANIMGGPULVL3_H__
16 # define __IPSDKIPLARITHMETIC_POLARTOCARTESIANIMGGPULVL3_H__
17 
21 #include <IPSDKImageProcessing/Algorithm/Function/ImageBufferTypeIdentifier.h>
22 #include <IPSDKImage/Image/BaseImage.h>
23 
24 // Attributes headers
25 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/SubImage/Input/Gpu/InSubGpuImg1.h>
26 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/SubImage/Input/Gpu/InSubGpuImg2.h>
27 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Image/Output/OutRhoImg.h>
28 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Image/Output/OutThetaImg.h>
29 
30 namespace ipsdk {
31 namespace imaproc {
32 namespace arithm {
33 
36 
37 // declare processor class
38 IPSDK_DECLARE_GPU_PROCESSING_ALGORITHM(IPSDKIPLArithmetic, CartesianToPolarImg,
39  ipsdk::imaproc::matchSize(_pInSubGpuImg1, _pInSubGpuImg2, _pOutRhoImg) &&
40  ipsdk::imaproc::matchSize(_pInSubGpuImg1, _pOutThetaImg),
41  (((ipsdk)(imaproc)(attr))(InSubGpuImg1))
42  (((ipsdk)(imaproc)(attr))(InSubGpuImg2))
43  (((ipsdk)(imaproc)(attr))(OutRhoImg))
44  (((ipsdk)(imaproc)(attr))(OutThetaImg)))
45 
46  IPSDKCUDA_DECLARE_NOTYPE_ALGORITHM_FUNCTION_SELECTOR()
47 
48 // methods
49 public:
50  BoolResult genericKernelLauncher();
51 
52 // attributes
53 protected:
54 };
55 
58 
59 } // end of namespace arithm
60 } // end of namespace imaproc
61 } // end of namespace ipsdk
62 
63 # endif // __IPSDKIPLARITHMETIC_POLARTOCARTESIANIMGGPULVL3_H__
Definition of import/export macro for library.
#define IPSDK_DECLARE_GPU_PROCESSING_ALGORITHM(libraryName, algoName, RuleString, attributeSeq)