minAsync function

Future<Mat> minAsync(
  1. InputArray src1,
  2. InputArray src2
)

Min calculates per-element minimum of two arrays or an array and a scalar.

For further details, please see: https://docs.opencv.org/master/d2/de8/group__core__array.html#ga9af368f182ee76d0463d0d8d5330b764

Implementation

Future<Mat> minAsync(InputArray src1, InputArray src2) async =>
    cvRunAsync((callback) => ccore.core_Min_Async(src1.ref, src2.ref, callback), matCompleter);