Spaces:
Running
Running
Commit
·
50e3fc6
1
Parent(s):
1e6e09c
Added share
Browse files
app.py
CHANGED
|
@@ -28,4 +28,4 @@ def detect_and_blur_faces(image):
|
|
| 28 |
image_input = gr.inputs.Image(shape=(None, None))
|
| 29 |
image_output = gr.outputs.Image(type='numpy')
|
| 30 |
|
| 31 |
-
gr.Interface(fn=detect_and_blur_faces, inputs=image_input, outputs=image_output, title="Face Detection and Blurring").launch()
|
|
|
|
| 28 |
image_input = gr.inputs.Image(shape=(None, None))
|
| 29 |
image_output = gr.outputs.Image(type='numpy')
|
| 30 |
|
| 31 |
+
gr.Interface(share=True, fn=detect_and_blur_faces, inputs=image_input, outputs=image_output, title="Face Detection and Blurring").launch()
|