setNMSThresholdAsync method

Future<void> setNMSThresholdAsync(
  1. double nmsThreshold
)

Implementation

Future<void> setNMSThresholdAsync(double nmsThreshold) async {
  await cvRunAsync0<void>(
      (callback) => cobjdetect.FaceDetectorYN_SetNMSThreshold_Async(
            ref,
            nmsThreshold,
            callback,
          ), (c) {
    return c.complete();
  });
}