Click or drag to resize
CvInvokeGemm Method
http://www.emgu.com
Performs generalized matrix multiplication: dst = alpha*op(src1)*op(src2) + beta*op(src3), where op(X) is X or XT

Namespace: Emgu.CV
Assembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax
public static void Gemm(
	IInputArray src1,
	IInputArray src2,
	double alpha,
	IInputArray src3,
	double beta,
	IOutputArray dst,
	GemmType tAbc = GemmType.Default
)

Parameters

src1
Type: Emgu.CVIInputArray
The first source array.
src2
Type: Emgu.CVIInputArray
The second source array.
alpha
Type: SystemDouble
The scalar
src3
Type: Emgu.CVIInputArray
The third source array (shift). Can be null, if there is no shift.
beta
Type: SystemDouble
The scalar
dst
Type: Emgu.CVIOutputArray
The destination array.
tAbc (Optional)
Type: Emgu.CV.CvEnumGemmType
The Gemm operation type
See Also