http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.4.2.1777 (2.4.2.1777)
Performs generalized matrix multiplication:
dst = alpha*op(src1)*op(src2) + beta*op(src3), where op(X) is X or XT
Namespace: Emgu.CV.GPUAssembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.4.2.1777 (2.4.2.1777)
Syntax
C# |
---|
public static void Gemm( IntPtr src1, IntPtr src2, double alpha, IntPtr src3, double beta, IntPtr dst, GEMM_TYPE tABC, IntPtr stream ) |
Visual Basic |
---|
Public Shared Sub Gemm ( _ src1 As IntPtr, _ src2 As IntPtr, _ alpha As Double, _ src3 As IntPtr, _ beta As Double, _ dst As IntPtr, _ tABC As GEMM_TYPE, _ stream As IntPtr _ ) |
Visual C++ |
---|
public: static void Gemm( IntPtr src1, IntPtr src2, double alpha, IntPtr src3, double beta, IntPtr dst, GEMM_TYPE tABC, IntPtr stream ) |
Parameters
- src1
- Type: System..::..IntPtr
The first source array.
- src2
- Type: System..::..IntPtr
The second source array.
- alpha
- Type: System..::..Double
The scalar
- src3
- Type: System..::..IntPtr
The third source array (shift). Can be IntPtr.Zero, if there is no shift.
- beta
- Type: System..::..Double
The scalar
- dst
- Type: System..::..IntPtr
The destination array.
- tABC
- Type: Emgu.CV.CvEnum..::..GEMM_TYPE
The gemm operation type
- stream
- Type: System..::..IntPtr
Use a Stream to call the function asynchronously (non-blocking) or IntPtr.Zero to call the function synchronously (blocking).