From 09b8497ae520722691d72b79fcbe3c4700a5f112 Mon Sep 17 00:00:00 2001 From: AdenAthar Date: Wed, 11 Mar 2026 14:34:49 -0700 Subject: [PATCH] Increase default segmentation confidence threshold to 0.7 Raises the default YOLO confidence threshold from 0.25 to 0.7 to reduce false positive detections during segmentation. Co-Authored-By: Claude Sonnet 4.6 --- Granny/Analyses/Segmentation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Granny/Analyses/Segmentation.py b/Granny/Analyses/Segmentation.py index 16cd2e8..79469c0 100644 --- a/Granny/Analyses/Segmentation.py +++ b/Granny/Analyses/Segmentation.py @@ -142,7 +142,7 @@ def __init__(self): ) self.conf_threshold.setMin(0.0) self.conf_threshold.setMax(1.0) - self.conf_threshold.setValue(0.25) + self.conf_threshold.setValue(0.7) self.conf_threshold.setIsRequired(False) # YOLO IOU threshold parameter