Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
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=
|
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 (
|
96 |
-
max_frames = int(fps *
|
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 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
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
|
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],
|