fix(rebase) reverting files to main

This commit is contained in:
Michel Aractingi
2025-06-30 16:22:57 +02:00
parent c3e98db37d
commit d9b9cc80da
13 changed files with 339 additions and 74 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ def display_and_save_video_stream(output_dir: Path, fps: int, width: int, height
if not ret:
print("Error: Could not read frame.")
break
rr.log("video/stream", rr.Image(frame.numpy()), static=True)
rr.log("video/stream", rr.Image(frame), static=True)
cv2.imwrite(str(capture_dir / f"frame_{frame_index:06d}.png"), frame)
frame_index += 1