hyunjunian commited on
Commit
42e96c7
·
1 Parent(s): a0a091e
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -68,7 +68,7 @@ with gr.Blocks() as demo:
68
  with gr.Column():
69
  input_img = gr.Image(sources=["webcam"], type="filepath")
70
  with gr.Column():
71
- output_img = gr.Label()
72
- dep = input_img.stream(abnormal_stream, [input_img], [output_img], every=1)
73
 
74
  demo.launch()
 
68
  with gr.Column():
69
  input_img = gr.Image(sources=["webcam"], type="filepath")
70
  with gr.Column():
71
+ output_label = gr.Label()
72
+ dep = input_img.stream(abnormal_stream, [input_img], [output_label])
73
 
74
  demo.launch()