From 3927264eea7f1fda9ac74596b69282a41d35f667 Mon Sep 17 00:00:00 2001 From: nicoboy Date: Sun, 19 Jul 2026 22:01:19 +0200 Subject: [PATCH] =?UTF-8?q?Ajuster=20pyramide=20RSSI=20:=20r=C3=A9duire=20?= =?UTF-8?q?=C3=A0=206=20segments=20et=20remonter?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - N : 10 → 6 segments (garder les 6 du bas, plus fins) - pyr_h : 90 → 54 pixels (proportionnel, même hauteur segment) - margin_top : 10 → 6 pixels (remonte la pyramide) Co-Authored-By: Claude Haiku 4.5 Claude-Session: https://claude.ai/code/session_01VmaVcCrWp2QG7hkEDk15Cv --- receive_cam.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/receive_cam.py b/receive_cam.py index 7765411..2d3d65c 100644 --- a/receive_cam.py +++ b/receive_cam.py @@ -137,11 +137,11 @@ def draw_rssi_pyramid(frame: np.ndarray) -> np.ndarray: rssi = _rssi_data h, w = frame.shape[:2] - N = 10 + N = 6 pyr_w = 70 - pyr_h = 90 + pyr_h = 54 gap = 2 - margin_top = 10 + margin_top = 6 margin_right = 10 x_center = w - margin_right - pyr_w // 2 y_top = margin_top