Skip to content

Conversation

Copy link

Copilot AI commented Nov 6, 2025

Removes the green boundary cursors (start/end edges) from the video node's spectrogram display while preserving the yellow middle cursor for playback position.

Changes

  • Removed boundary cursor rendering (lines 772-794 in node/InputNode/node_video.py)
    • Eliminated start cursor (left edge, green)
    • Eliminated end cursor (right edge, green)
    • Preserved middle cursor (playback position, yellow)

The spectrogram window extraction, padding logic, and classification data flow remain unchanged.

# Before: Drew 3 cursors (green start, yellow middle, green end)
cv2.line(spectrogram_window, (start_cursor_col, 0), ..., (0, 255, 0), 2)  # removed
cv2.line(spectrogram_window, (end_cursor_col, 0), ..., (0, 255, 0), 2)   # removed
cv2.line(spectrogram_window, (indicator_col, 0), ..., (0, 255, 255), 2)  # kept

# After: Only middle cursor remains
cv2.line(spectrogram_window, (indicator_col, 0), ..., (0, 255, 255), 2)
Original prompt

supprimme le cursor start et le cursor stop de spectrogramme du node video


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

Co-authored-by: hackolite <826027+hackolite@users.noreply.github.com>
Copilot AI changed the title [WIP] Remove cursor start and stop from video spectrogram Remove start and end boundary cursors from spectrogram display Nov 6, 2025
Copilot AI requested a review from hackolite November 6, 2025 11:49
@hackolite hackolite force-pushed the main branch 2 times, most recently from d9f4029 to f5ce349 Compare November 9, 2025 10:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants