IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
Variance2dImgGpuLvl3.h
1 // Variance2dImgGpuLvl3.h:
3 // --------------
4 //
14 
15 # ifndef __IPSDKIPLFILTERING_VARIANCE2DIMGGPULVL3_H__
16 # define __IPSDKIPLFILTERING_VARIANCE2DIMGGPULVL3_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/InSubGpuImg.h>
26 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Value/InHalfKnlSizeX.h>
27 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Value/InHalfKnlSizeY.h>
28 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Image/Output/OutRealImg.h>
29 
30 namespace ipsdk {
31 namespace imaproc {
32 namespace stats {
33 
36 
37 // declare processor class
38 IPSDK_DECLARE_GPU_PROCESSING_ALGORITHM(IPSDKIPLStats, Variance2dImg,
39  ipsdk::imaproc::matchSize(_pInSubGpuImg, _pOutRealImg),
40  (((ipsdk)(imaproc)(attr))(InSubGpuImg))
41  (((ipsdk)(imaproc)(attr))(InHalfKnlSizeX))
42  (((ipsdk)(imaproc)(attr))(InHalfKnlSizeY))
43  (((ipsdk)(imaproc)(attr))(OutRealImg)))
44 
46 
47 // methods
48 public:
49 
50  template<typename TIn>
51  BoolResult genericKernelLauncher();
52 
53 // attributes
54 protected:
55 };
56 
59 
60 } // end of namespace filter
61 } // end of namespace imaproc
62 } // end of namespace ipsdk
63 
64 # endif // __IPSDKIPLFILTERING_VARIANCE2DIMGGPULVL3_H__
#define IPSDKCUDA_DECLARE_ALGORITHM_FUNCTION_SELECTOR(dataTypeSeq)
Definition of import/export macro for library.
#define IPSDK_DECLARE_GPU_PROCESSING_ALGORITHM(libraryName, algoName, RuleString, attributeSeq)