Spaces:
Sleeping
Sleeping
Commit
·
42e96c7
1
Parent(s):
a0a091e
fix
Browse files
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 |
-
|
72 |
-
dep = input_img.stream(abnormal_stream, [input_img], [
|
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()
|