inRangeAsync function

Future<Mat> inRangeAsync(
  1. InputArray src,
  2. InputArray lowerb,
  3. InputArray upperb
)

InRange checks if array elements lie between the elements of two Mat arrays.

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

Implementation

Future<Mat> inRangeAsync(
  InputArray src,
  InputArray lowerb,
  InputArray upperb,
) async =>
    cvRunAsync(
      (callback) => ccore.core_InRange_Async(src.ref, lowerb.ref, upperb.ref, callback),
      matCompleter,
    );