IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
MultiplyScalarImgGpuLvl3.h
1 // MultiplyScalarImgGpuLvl3.h:
3 // --------------
4 //
14 
15 # ifndef __IPSDKIPLARITHMETIC_MULTIPLYSCALARIMGGPULVL3_H__
16 # define __IPSDKIPLARITHMETIC_MULTIPLYSCALARIMGGPULVL3_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/InArithmeticVal.h>
27 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Image/Output/OutImg.h>
28 
29 namespace ipsdk {
30 namespace imaproc {
31 namespace arithm {
32 
35 
36 // declare processor class
37 IPSDK_DECLARE_GPU_PROCESSING_ALGORITHM(IPSDKIPLArithmetic, MultiplyScalarImg,
38  ipsdk::imaproc::matchSize(_pInSubGpuImg, _pOutImg),
39  (((ipsdk)(imaproc)(attr))(InSubGpuImg))
40  (((ipsdk)(imaproc)(attr))(InArithmeticVal))
41  (((ipsdk)(imaproc)(attr))(OutImg)))
42 
44 
45 // methods
46 public:
47  template<typename TIn, typename TOut>
48  BoolResult genericKernelLauncher();
49 
50 // attributes
51 protected:
52 };
53 
56 
57 } // end of namespace arithm
58 } // end of namespace imaproc
59 } // end of namespace ipsdk
60 
61 # endif // __IPSDKIPLARITHMETIC_MULTIPLYSCALARIMGGPULVL3_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)