Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -24,6 +24,6 @@ def FaceRec(img):
|
|
| 24 |
def FaceRec(img):
|
| 25 |
return img
|
| 26 |
|
| 27 |
-
interface = gr.Interface(FaceRec, gr.inputs.Image(shape=(200,200)), "image")
|
| 28 |
|
| 29 |
interface.launch(debug = True, inline = False)
|
|
|
|
| 24 |
def FaceRec(img):
|
| 25 |
return img
|
| 26 |
|
| 27 |
+
interface = gr.Interface(FaceRec, gr.inputs.Image(shape=(200,200), source="webcam"), "image")
|
| 28 |
|
| 29 |
interface.launch(debug = True, inline = False)
|