setScoreThreshold method

void setScoreThreshold(
  1. double scoreThreshold
)

Set the score threshold to filter out bounding boxes of score less than the given value.

scoreThreshold threshold for filtering out bounding boxes

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

Implementation

void setScoreThreshold(double scoreThreshold) {
  cvRun(() => cobjdetect.FaceDetectorYN_SetScoreThreshold(ref, scoreThreshold));
}