From 8950c8c514758245fcd9e8c66d497f9111dc2024 Mon Sep 17 00:00:00 2001 From: Nikita Aksenov Date: Thu, 28 May 2026 12:51:39 +0300 Subject: [PATCH] bugfix: calib key renamed in API response parsing --- detection/pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/detection/pipeline.py b/detection/pipeline.py index 7fa06da..275b152 100644 --- a/detection/pipeline.py +++ b/detection/pipeline.py @@ -178,7 +178,7 @@ def fetch_camera_and_calibration( camera_id = int(camera_info["camera_id"]) video_source_url = camera_info["source"] - calibration_raw = camera_info.get("calibration") or {} + calibration_raw = camera_info.get("calib") or {} if not calibration_raw: print("[WARN] camera calibration is missing, using full frame", flush=True)