IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
Variance3dImgGpuLvl3.h
1 // Variance3dImgGpuLvl3.h:
3 // --------------
4 //
14 
15 # ifndef __IPSDKIPLFILTERING_VARIANCE3DIMGGPULVL3_H__
16 # define __IPSDKIPLFILTERING_VARIANCE3DIMGGPULVL3_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/Value/InHalfKnlSizeZ.h>
29 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Image/Output/OutRealImg.h>
30 
31 namespace ipsdk {
32 namespace imaproc {
33 namespace stats {
34 
37 
38 // declare processor class
39 IPSDK_DECLARE_GPU_PROCESSING_ALGORITHM(IPSDKIPLStats, Variance3dImg,
40  ipsdk::imaproc::matchSize(_pInSubGpuImg, _pOutRealImg),
41  (((ipsdk)(imaproc)(attr))(InSubGpuImg))
42  (((ipsdk)(imaproc)(attr))(InHalfKnlSizeX))
43  (((ipsdk)(imaproc)(attr))(InHalfKnlSizeY))
44  (((ipsdk)(imaproc)(attr))(InHalfKnlSizeZ))
45  (((ipsdk)(imaproc)(attr))(OutRealImg)))
46 
48 
49 // methods
50 public:
51 
52  template<typename TIn>
53  BoolResult genericKernelLauncher();
54 
55 // attributes
56 protected:
57 };
58 
61 
62 } // end of namespace filter
63 } // end of namespace imaproc
64 } // end of namespace ipsdk
65 
66 # endif // __IPSDKIPLFILTERING_VARIANCE3DIMGGPULVL3_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)