gemmAsync function
Future<Mat>
gemmAsync(
- InputArray src1,
- InputArray src2,
- double alpha,
- InputArray src3,
- double beta, {
- int flags = 0,
Gemm performs generalized matrix multiplication.
For further details, please see: https://docs.opencv.org/master/d2/de8/group__core__array.html#gacb6e64071dffe36434e1e7ee79e7cb35
Implementation
Future<Mat> gemmAsync(
InputArray src1,
InputArray src2,
double alpha,
InputArray src3,
double beta, {
int flags = 0,
}) async =>
cvRunAsync(
(callback) => ccore.core_Gemm_Async(src1.ref, src2.ref, alpha, src3.ref, beta, flags, callback),
matCompleter,
);