http://www.emgu.com
Assembly: Emgu.CV (in Emgu.CV.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.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.4.2.1777 (2.4.2.1777)
Syntax
C# |
---|
public static void cvGEMM( IntPtr src1, IntPtr src2, double alpha, IntPtr src3, double beta, IntPtr dst, GEMM_TYPE tABC ) |
Visual Basic |
---|
Public Shared Sub cvGEMM ( _ src1 As IntPtr, _ src2 As IntPtr, _ alpha As Double, _ src3 As IntPtr, _ beta As Double, _ dst As IntPtr, _ tABC As GEMM_TYPE _ ) |
Visual C++ |
---|
public: static void cvGEMM( IntPtr src1, IntPtr src2, double alpha, IntPtr src3, double beta, IntPtr dst, GEMM_TYPE tABC ) |
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