From d2744a93947705ff6defabe3a48f797c514973d5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Nov 2025 11:43:39 +0000 Subject: [PATCH 1/2] Initial plan From b9a5041754513041cd0b8788a72a21a83172517d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Nov 2025 11:47:53 +0000 Subject: [PATCH 2/2] Remove start and end boundary cursors from spectrogram display Co-authored-by: hackolite <826027+hackolite@users.noreply.github.com> --- node/InputNode/node_video.py | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/node/InputNode/node_video.py b/node/InputNode/node_video.py index 25123ae9..5d7d43b2 100644 --- a/node/InputNode/node_video.py +++ b/node/InputNode/node_video.py @@ -769,30 +769,6 @@ def update( # Adjust indicator position after left padding indicator_col += pad_width - # Draw boundary cursors (green) at start and end of the window - # These show the full window (including padding) being sent to classification - # Green in BGR is (0, 255, 0) - start_cursor_col = 0 - end_cursor_col = spectrogram_window.shape[1] - 1 - - # Draw start boundary cursor (left edge) - cv2.line( - spectrogram_window, - (start_cursor_col, 0), - (start_cursor_col, spectrogram_window.shape[0] - 1), - (0, 255, 0), - 2, - ) - - # Draw end boundary cursor (right edge) - cv2.line( - spectrogram_window, - (end_cursor_col, 0), - (end_cursor_col, spectrogram_window.shape[0] - 1), - (0, 255, 0), - 2, - ) - # Draw yellow vertical line at current position within the window (middle cursor) if 0 <= indicator_col < spectrogram_window.shape[1]: # Yellow in BGR is (0, 255, 255)