Alex Gonzalez commited on
Commit
39d5445
·
1 Parent(s): 16cf1ad

Stream a Webcam

Browse files
Files changed (1) hide show
  1. app.py +10 -4
app.py CHANGED
@@ -1,7 +1,13 @@
1
  import gradio as gr
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
 
 
 
 
 
5
 
6
- demo = gr.Interface(fn=greet, inputs="text", outputs="text")
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
+
13
+ demo.launch()