Skip to content

Commit

Permalink
type error
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird committed Sep 11, 2024
1 parent 52bebe5 commit 4837177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vision_agent/utils/video.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def extract_frames_from_video(
orig_fps = cap.get(cv2.CAP_PROP_FPS)
orig_frame_time = 1 / orig_fps
targ_frame_time = 1 / fps
frames = []
frames: List[Tuple[np.ndarray, float]] = []
i = 0
elapsed_time = 0.0
while cap.isOpened():
Expand Down

0 comments on commit 4837177

Please sign in to comment.