Update app.py
Browse files
app.py
CHANGED
@@ -114,31 +114,32 @@ with gr.Blocks(theme=gr.themes.Monochrome()) as demo:
|
|
114 |
4. **Visualizes Output**: Displays the processed video alongside a sample of the original frames.
|
115 |
""")
|
116 |
|
117 |
-
#
|
118 |
with gr.Row():
|
119 |
-
|
|
|
|
|
120 |
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
threshold = gr.Slider(minimum=0.1, maximum=0.9, value=0.25, step=0.05, label="Threshold")
|
131 |
|
132 |
gr.Examples(
|
133 |
examples=[
|
134 |
["bangkok.mp4", "yolox_tiny", 0.25],
|
135 |
["lotr.mp4", "yolox_m", 0.3],
|
136 |
-
["mi.mp4", "
|
137 |
],
|
138 |
inputs=[video_file, model_id, threshold],
|
139 |
fn=process_video
|
140 |
)
|
141 |
-
|
142 |
# Button to trigger file processing
|
143 |
process_button = gr.Button("Process Video")
|
144 |
|
|
|
114 |
4. **Visualizes Output**: Displays the processed video alongside a sample of the original frames.
|
115 |
""")
|
116 |
|
117 |
+
# Input section
|
118 |
with gr.Row():
|
119 |
+
# Left column for video upload
|
120 |
+
with gr.Column():
|
121 |
+
video_file = gr.File(label="Upload Video", file_count="single")
|
122 |
|
123 |
+
# Right column for model selection and threshold
|
124 |
+
with gr.Column():
|
125 |
+
model_id = gr.Radio(
|
126 |
+
choices=['yolox_tiny', 'yolox_m', 'yolox_x'],
|
127 |
+
value='yolox_tiny',
|
128 |
+
label="YOLOX Model",
|
129 |
+
interactive=True
|
130 |
+
)
|
131 |
+
threshold = gr.Slider(minimum=0.1, maximum=0.9, value=0.25, step=0.05, label="Threshold")
|
|
|
132 |
|
133 |
gr.Examples(
|
134 |
examples=[
|
135 |
["bangkok.mp4", "yolox_tiny", 0.25],
|
136 |
["lotr.mp4", "yolox_m", 0.3],
|
137 |
+
["mi.mp4", "yolox_x", 0.5],
|
138 |
],
|
139 |
inputs=[video_file, model_id, threshold],
|
140 |
fn=process_video
|
141 |
)
|
142 |
+
|
143 |
# Button to trigger file processing
|
144 |
process_button = gr.Button("Process Video")
|
145 |
|