thresholdAsync static method

Future<Mat> thresholdAsync(
  1. InputArray src,
  2. double thresh,
  3. int type
)

Implementation

static Future<Mat> thresholdAsync(InputArray src, double thresh, int type) async => cvRunAsync(
      (callback) => ccontrib.ximgproc_rl_threshold_Async(src.ref, thresh, type, callback),
      matCompleter,
    );