thresholdAsync static method
Applies a fixed-level threshold to each array element.
Implementation
static Future<Mat> thresholdAsync(InputArray src, double thresh, int type) async => cvRunAsync(
(callback) => cffi.ximgproc_rl_threshold_Async(src.ref, thresh, type, callback),
matCompleter,
);