From 42e3db5c95670c58c86725ed14f8f0695a0de337 Mon Sep 17 00:00:00 2001 From: sladro Date: Fri, 27 Feb 2026 19:22:10 +0800 Subject: [PATCH] Update YOLO model configuration to use cxcywh box format and adjust confidence threshold --- configs/test_cam1_ppe11_yolo_debug.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configs/test_cam1_ppe11_yolo_debug.json b/configs/test_cam1_ppe11_yolo_debug.json index 177369e..548327b 100644 --- a/configs/test_cam1_ppe11_yolo_debug.json +++ b/configs/test_cam1_ppe11_yolo_debug.json @@ -49,10 +49,10 @@ "model_w": 768, "model_h": 768, "num_classes": 11, - "v8_box_format": "auto", - "conf": 0.45, + "v8_box_format": "cxcywh", + "conf": 0.25, "nms": 0.45, - "class_filter": [3, 6], + "class_filter": [], "debug": { "stats": true, "stats_interval": 30,