update
Browse files
app.py
CHANGED
|
@@ -43,7 +43,8 @@ def track_video_via_api(input_video_path):
|
|
| 43 |
|
| 44 |
# --- GRADIO UI (from your original app.py) ---
|
| 45 |
with gr.Blocks() as demo:
|
| 46 |
-
gr.Markdown("<h1 style='text-align:center; font-size:4em;'>Vehicle and Pedestrian Segmentation</h1>")
|
|
|
|
| 47 |
input_video = gr.Video(label="Upload Video")
|
| 48 |
start_btn = gr.Button("Start Tracking")
|
| 49 |
status_display = gr.HTML("") # Initially empty
|
|
|
|
| 43 |
|
| 44 |
# --- GRADIO UI (from your original app.py) ---
|
| 45 |
with gr.Blocks() as demo:
|
| 46 |
+
gr.Markdown("<h1 style='text-align:center; font-size:4em;'>Vehicle and Pedestrian Segmentation</h1>")
|
| 47 |
+
gr.Markdown("Note: Processing on the free tier can take several minutes. Please be patient after clicking 'Start Tracking'.")
|
| 48 |
input_video = gr.Video(label="Upload Video")
|
| 49 |
start_btn = gr.Button("Start Tracking")
|
| 50 |
status_display = gr.HTML("") # Initially empty
|