Ankan Ghosh
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -234,7 +234,9 @@ def process_video_interface(video_file, points):
|
|
234 |
|
235 |
|
236 |
# Gradio Interface.
|
237 |
-
with gr.Blocks() as demo:
|
|
|
|
|
238 |
with gr.Row(equal_height=True):
|
239 |
video_input = gr.Video(label="Input Video")
|
240 |
extract_frame_button = gr.Button("Extract First Frame")
|
|
|
234 |
|
235 |
|
236 |
# Gradio Interface.
|
237 |
+
with gr.Blocks(title="Lane Detection using OpenCV") as demo:
|
238 |
+
gr.Markdown("# Lane Detection using OpenCV")
|
239 |
+
gr.Markdown("Upload your video, select the four region points to make the ROI yo want to track. Click process video to get the output.")
|
240 |
with gr.Row(equal_height=True):
|
241 |
video_input = gr.Video(label="Input Video")
|
242 |
extract_frame_button = gr.Button("Extract First Frame")
|