From 2ae9e5bb7497c935f452e9fbbf97c2fc333e3a1e Mon Sep 17 00:00:00 2001 From: jiajie555 Date: Sun, 27 Apr 2025 16:43:12 +0800 Subject: [PATCH] =?UTF-8?q?dettracking=E4=BF=9D=E5=AD=98=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- track_reid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/track_reid.py b/track_reid.py index 9dd39ee..a9a3337 100644 --- a/track_reid.py +++ b/track_reid.py @@ -160,7 +160,7 @@ def yolov10_resnet_tracker( model = YOLOv10(weights) custom = {"conf": 0.1, "batch": 1, "save": False, "mode": "predict"} - kwargs = {"save": True, "imgsz": 640, "conf": 0.1} + kwargs = {"save": False, "imgsz": 640, "conf": 0.1} args = {**model.overrides, **custom, **kwargs} predictor = model.task_map[model.task]["predictor"](overrides=args, _callbacks=model.callbacks)