Mar2Ding commited on
Commit
e10e859
·
verified ·
1 Parent(s): e758c8f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -10
app.py CHANGED
@@ -38,7 +38,7 @@ from sam2.build_sam import build_sam2_video_predictor
38
 
39
  from moviepy.editor import ImageSequenceClip
40
 
41
- def sparse_sampling(jpeg_images, original_fps, target_fps=5):
42
  # Calculate the frame interval for sampling based on the target fps
43
  frame_interval = int(original_fps // target_fps)
44
 
@@ -92,8 +92,8 @@ def preprocess_video_in(video_path):
92
  # Get the frames per second (FPS) of the video
93
  fps = cap.get(cv2.CAP_PROP_FPS)
94
 
95
- # Calculate the number of frames to process (10 seconds of video)
96
- max_frames = int(fps * 10)
97
 
98
  frame_number = 0
99
  first_frame = None
@@ -102,12 +102,12 @@ def preprocess_video_in(video_path):
102
  ret, frame = cap.read()
103
  if not ret or frame_number >= max_frames:
104
  break
105
-
106
- # Format the frame filename as '00000.jpg'
107
- frame_filename = os.path.join(extracted_frames_output_dir, f'{frame_number:05d}.jpg')
108
-
109
- # Save the frame as a JPEG file
110
- cv2.imwrite(frame_filename, frame)
111
 
112
  # Store the first frame
113
  if frame_number == 0:
@@ -486,7 +486,7 @@ with gr.Blocks(css=css) as demo:
486
  5. **Check Propagation** every 15 frames
487
  6. **Propagate with "render"** to render the final masked video
488
  7. **Hit Reset** button if you want to refresh and start again
489
- *Note: Input video will be processed for up to 10 seconds only for demo purposes.*
490
  """
491
  )
492
  with gr.Row():
@@ -631,6 +631,7 @@ with gr.Blocks(css=css) as demo:
631
  queue=False
632
  )
633
 
 
634
  propagate_btn.click(
635
  fn = update_ui,
636
  inputs = [vis_frame_type],
 
38
 
39
  from moviepy.editor import ImageSequenceClip
40
 
41
+ def sparse_sampling(jpeg_images, original_fps, target_fps=6):
42
  # Calculate the frame interval for sampling based on the target fps
43
  frame_interval = int(original_fps // target_fps)
44
 
 
92
  # Get the frames per second (FPS) of the video
93
  fps = cap.get(cv2.CAP_PROP_FPS)
94
 
95
+ # Calculate the number of frames to process (60 seconds of video)
96
+ max_frames = int(fps * 60)
97
 
98
  frame_number = 0
99
  first_frame = None
 
102
  ret, frame = cap.read()
103
  if not ret or frame_number >= max_frames:
104
  break
105
+ if frame_number % 6 == 0:
106
+ # Format the frame filename as '00000.jpg'
107
+ frame_filename = os.path.join(extracted_frames_output_dir, f'{frame_number:05d}.jpg')
108
+
109
+ # Save the frame as a JPEG file
110
+ cv2.imwrite(frame_filename, frame)
111
 
112
  # Store the first frame
113
  if frame_number == 0:
 
486
  5. **Check Propagation** every 15 frames
487
  6. **Propagate with "render"** to render the final masked video
488
  7. **Hit Reset** button if you want to refresh and start again
489
+ *Note: Input video will be processed for up to 60 seconds only for demo purposes.*
490
  """
491
  )
492
  with gr.Row():
 
631
  queue=False
632
  )
633
 
634
+
635
  propagate_btn.click(
636
  fn = update_ui,
637
  inputs = [vis_frame_type],