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