Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -8,9 +8,4 @@ def process_frame(image):
|
|
8 |
# You will process it and return the modified version
|
9 |
return image
|
10 |
|
11 |
-
gr.Interface(
|
12 |
-
fn=process_frame,
|
13 |
-
inputs=gr.Image(source="webcam", streaming=True),
|
14 |
-
outputs="image",
|
15 |
-
live=True
|
16 |
-
).launch()
|
|
|
8 |
# You will process it and return the modified version
|
9 |
return image
|
10 |
|
11 |
+
gr.Interface(fn=process_frame,inputs=gr.Image(source="webcam", streaming=True),outputs="image",live=True).launch()
|
|
|
|
|
|
|
|
|
|