harshitface2003 commited on
Commit
37d0ed4
·
verified ·
1 Parent(s): 715530d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -4
app.py CHANGED
@@ -1,7 +1,12 @@
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
+ demo.launch()