Spaces:
Running
on
T4
Running
on
T4
Update app.py
Browse files
app.py
CHANGED
@@ -220,7 +220,7 @@ def load_model(checkpoint):
|
|
220 |
|
221 |
|
222 |
|
223 |
-
def sam_process(input_first_frame_image, checkpoint, tracking_points, trackings_input_label, video_frames_dir):
|
224 |
# 1. We need to preprocess the video and store frames in the right directory
|
225 |
# — Penser à utiliser un ID unique pour le dossier
|
226 |
|
@@ -372,7 +372,7 @@ with gr.Blocks() as demo:
|
|
372 |
point_type = gr.Radio(label="point type", choices=["include", "exclude"], value="include")
|
373 |
clear_points_btn = gr.Button("Clear Points")
|
374 |
checkpoint = gr.Dropdown(label="Checkpoint", choices=["tiny", "small", "base-plus", "large"], value="tiny")
|
375 |
-
submit_btn = gr.Button("Submit")
|
376 |
with gr.Column():
|
377 |
output_result = gr.Image()
|
378 |
with gr.Row():
|
|
|
220 |
|
221 |
|
222 |
|
223 |
+
def sam_process(input_first_frame_image, checkpoint, tracking_points, trackings_input_label, video_frames_dir, progress=gr.Progress(track_tqdm=True)):
|
224 |
# 1. We need to preprocess the video and store frames in the right directory
|
225 |
# — Penser à utiliser un ID unique pour le dossier
|
226 |
|
|
|
372 |
point_type = gr.Radio(label="point type", choices=["include", "exclude"], value="include")
|
373 |
clear_points_btn = gr.Button("Clear Points")
|
374 |
checkpoint = gr.Dropdown(label="Checkpoint", choices=["tiny", "small", "base-plus", "large"], value="tiny")
|
375 |
+
submit_btn = gr.Button("Submit", size="lg")
|
376 |
with gr.Column():
|
377 |
output_result = gr.Image()
|
378 |
with gr.Row():
|