From 92e4c5dd379caf0de21fa2cfd744647d05d8ad53 Mon Sep 17 00:00:00 2001 From: Hamza Zakaria Date: Sun, 3 May 2026 15:19:21 +0100 Subject: [PATCH] DEFAULT_IMGSZ=800 --- 4_detect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/4_detect.py b/4_detect.py index 79e824d..f46e4f2 100644 --- a/4_detect.py +++ b/4_detect.py @@ -26,7 +26,7 @@ from ultralytics import YOLO DEFAULT_WEIGHTS = "runs/detect/coffee_v1/weights/best.pt" DEFAULT_CONF = .35 # lower = more detections and more false positives. DEFAULT_IOU = .45 # NMS IoU threshold. -DEFAULT_IMGSZ = 640 +DEFAULT_IMGSZ = 800 OUTPUT_DIR = Path("detections")