From 040512d3a5d31b05da691a4482bd013f4af080b1 Mon Sep 17 00:00:00 2001 From: Jakob Lechner Date: Fri, 8 Aug 2025 21:22:55 +0200 Subject: [PATCH 1/2] Add dependency prometheus_client --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index abf93cc..a491d2a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,3 +6,4 @@ scikit-image supervision uvicorn fastapi +prometheus_client From 050cca539e52d4d4a4ee8ab24e59b0020f65ba07 Mon Sep 17 00:00:00 2001 From: Jakob Lechner Date: Fri, 8 Aug 2025 21:23:57 +0200 Subject: [PATCH 2/2] Update urls --- tracker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tracker.py b/tracker.py index 73d251c..b75f80b 100644 --- a/tracker.py +++ b/tracker.py @@ -11,8 +11,8 @@ from metrics import get_metrics registry, metrics = get_metrics() STREAMS = { - "Kasse 1": "http://192.168.11.76:8080?action=stream", - "Kasse 2": "http://192.168.11.230:8080?action=stream", + "Kasse 1": "http://192.168.96.50:8080?action=stream", + "Kasse 2": "http://192.168.96.51:8080?action=stream", } model = YOLO("yolo_weights/yolo11n.pt")