From 65b779823df45666f46ce3a46bda664d9c91a5ff Mon Sep 17 00:00:00 2001 From: Michael Mayer Date: Wed, 26 May 2021 11:55:10 +0200 Subject: [PATCH] People: Reduce face detection score threshold #22 --- internal/face/detector.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/face/detector.go b/internal/face/detector.go index e89fe9205..382ef8dd5 100644 --- a/internal/face/detector.go +++ b/internal/face/detector.go @@ -83,7 +83,7 @@ func Detect(fileName string) (faces Faces, err error) { shiftFactor: 0.1, scaleFactor: 1.1, iouThreshold: 0.2, - scoreThreshold: 10.0, + scoreThreshold: 9.0, perturb: 63, }