divideAsync function
Divide performs the per-element division on two arrays or an array and a scalar.
For further details, please see: https://docs.opencv.org/master/d2/de8/group__core__array.html#ga6db555d30115642fedae0cda05604874
Implementation
Future<Mat> divideAsync(
InputArray src1,
InputArray src2, {
double scale = 1,
int dtype = -1,
}) async =>
cvRunAsync(
(callback) => ccore.core_Divide_Async(src1.ref, src2.ref, scale, dtype, callback),
matCompleter,
);