Update app.py
Browse files
app.py
CHANGED
@@ -106,7 +106,7 @@ def gradio_app():
|
|
106 |
gr.Markdown("# Video Object Detection with Owlv2")
|
107 |
|
108 |
video_input = gr.Video(label="Upload Video")
|
109 |
-
target_input = gr.Textbox(label="Target Object")
|
110 |
output_video = gr.Video(label="Output Video")
|
111 |
error_output = gr.Textbox(label="Error Messages", visible=False)
|
112 |
sample_video_frame = gr.Image(value=load_sample_frame("Drone Video of African Wildlife Wild Botswan.mp4"), label="Sample Video Frame")
|
@@ -123,7 +123,7 @@ def gradio_app():
|
|
123 |
|
124 |
def use_sample_video():
|
125 |
sample_video_path = "Drone Video of African Wildlife Wild Botswan.mp4"
|
126 |
-
output_video_path, error = process_and_update(sample_video_path, "
|
127 |
return output_video_path, error
|
128 |
|
129 |
use_sample_button.click(use_sample_video,
|
|
|
106 |
gr.Markdown("# Video Object Detection with Owlv2")
|
107 |
|
108 |
video_input = gr.Video(label="Upload Video")
|
109 |
+
target_input = gr.Textbox(label="Target Object", value="Elephant")
|
110 |
output_video = gr.Video(label="Output Video")
|
111 |
error_output = gr.Textbox(label="Error Messages", visible=False)
|
112 |
sample_video_frame = gr.Image(value=load_sample_frame("Drone Video of African Wildlife Wild Botswan.mp4"), label="Sample Video Frame")
|
|
|
123 |
|
124 |
def use_sample_video():
|
125 |
sample_video_path = "Drone Video of African Wildlife Wild Botswan.mp4"
|
126 |
+
output_video_path, error = process_and_update(sample_video_path, "Elephant")
|
127 |
return output_video_path, error
|
128 |
|
129 |
use_sample_button.click(use_sample_video,
|