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.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static void Gemm(
IInputArray src1,
IInputArray src2,
double alpha,
IInputArray src3,
double beta,
IOutputArray dst,
GemmType tABC = GemmType.Default,
Stream stream = null
)
Public Shared Sub Gemm (
src1 As IInputArray,
src2 As IInputArray,
alpha As Double,
src3 As IInputArray,
beta As Double,
dst As IOutputArray,
Optional tABC As GemmType = GemmType.Default,
Optional stream As Stream = Nothing
)
public:
static void Gemm(
IInputArray^ src1,
IInputArray^ src2,
double alpha,
IInputArray^ src3,
double beta,
IOutputArray^ dst,
GemmType tABC = GemmType::Default,
Stream^ stream = nullptr
)
static member Gemm :
src1 : IInputArray *
src2 : IInputArray *
alpha : float *
src3 : IInputArray *
beta : float *
dst : IOutputArray *
?tABC : GemmType *
?stream : Stream
(* Defaults:
let _tABC = defaultArg tABC GemmType.Default
let _stream = defaultArg stream null
*)
-> unit
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 IntPtr.Zero, 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 - stream (Optional)
- Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
See Also