gemmAsync function
Future<Mat>
gemmAsync(
- InputArray src1,
- InputArray src2,
- double alpha,
- InputArray src3,
- double beta, {
- OutputArray? dst,
- 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, {
OutputArray? dst,
int flags = 0,
}) async {
dst ??= Mat.empty();
return cvRunAsync0(
(callback) => ccore.cv_gemm(src1.ref, src2.ref, alpha, src3.ref, beta, dst!.ref, flags, callback),
(c) {
return c.complete(dst);
},
);
}