datasciencedojo
commited on
fix source issue
Browse files
app.py
CHANGED
@@ -33,7 +33,7 @@ def fun(img):
|
|
33 |
with gr.Blocks(title="Realtime Keypoint Detection | Data Science Dojo", css="footer {display:none !important} .output-markdown{display:none !important}") as demo:
|
34 |
with gr.Row():
|
35 |
with gr.Column():
|
36 |
-
webcam_input = gr.Video(
|
37 |
|
38 |
with gr.Column():
|
39 |
output = gr.Image(label="Output Image")
|
|
|
33 |
with gr.Blocks(title="Realtime Keypoint Detection | Data Science Dojo", css="footer {display:none !important} .output-markdown{display:none !important}") as demo:
|
34 |
with gr.Row():
|
35 |
with gr.Column():
|
36 |
+
webcam_input = gr.Video(label="Webcam Input", format="mp4") # Webcam input
|
37 |
|
38 |
with gr.Column():
|
39 |
output = gr.Image(label="Output Image")
|