Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,12 +1,15 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
|
|
|
|
|
|
10 |
|
11 |
if __name__ == "__main__":
|
12 |
-
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
def webcam(video0,video1):
|
4 |
+
return video0,video1
|
5 |
+
|
6 |
+
interface = gr.Interface(
|
7 |
+
fn=webcam,
|
8 |
+
inputs=[gr.Webcam(mirror_webcam=False,streaming=True),
|
9 |
+
gr.Webcam(mirror_webcam=True,streaming=True),
|
10 |
+
],
|
11 |
+
outputs=["image","image"],
|
12 |
+
)
|
13 |
|
14 |
if __name__ == "__main__":
|
15 |
+
interface.launch()
|