Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,12 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
-
|
7 |
-
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
with gr.Blocks() as demo:
|
4 |
+
with gr.Row():
|
5 |
+
with gr.Column():
|
6 |
+
input_img = gr.Image(label="Input", sources="webcam")
|
7 |
+
with gr.Column():
|
8 |
+
output_img = gr.Image(label="Output")
|
9 |
+
input_img.stream(lambda s: s, input_img, output_img, time_limit=15, stream_every=0.1, concurrency_limit=30)
|
10 |
|
11 |
+
if __name__ == "__main__":
|
12 |
+
demo.launch()
|