setNMSThreshold method

void setNMSThreshold(
  1. double nmsThreshold
)

Set the Non-maximum-suppression threshold to suppress bounding boxes that have IoU greater than the given value.

nmsThreshold threshold for NMS operation

https://docs.opencv.org/4.x/df/d20/classcv_1_1FaceDetectorYN.html#ab6011efee7e12dca3857d82de5269ac5

Implementation

void setNMSThreshold(double nmsThreshold) {
  cvRun(() => cobjdetect.FaceDetectorYN_SetNMSThreshold(ref, nmsThreshold));
}