Spaces:
Runtime error
Runtime error
Commit
·
1f01186
1
Parent(s):
ceac16c
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import gradio as gr
|
2 |
import RetinaFace
|
3 |
|
4 |
-
gr.Interface(fn=temp, inputs
|
5 |
|
6 |
def RetinaFace(img):
|
7 |
faces = RetinaFace.extract_faces(img_path = "img.jpg", align = True)
|
|
|
1 |
import gradio as gr
|
2 |
import RetinaFace
|
3 |
|
4 |
+
gr.Interface(fn=temp, inputs=gr.inputs.Image(shape=(800, 600), source="upload", type='file'), outputs="plot", title ="RetinaFace", allow_flagging = "never").launch(inbrowser= True)
|
5 |
|
6 |
def RetinaFace(img):
|
7 |
faces = RetinaFace.extract_faces(img_path = "img.jpg", align = True)
|