Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
conciomith
/
RetinaFace_FaceDetector_Extractor
like
14
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
conciomith
commited on
Mar 18, 2022
Commit
497ea27
·
1 Parent(s):
6e5c9cb
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+1
-1
app.py
CHANGED
Viewed
@@ -3,7 +3,7 @@ import RetinaFace
3
4
def RFace(img):
5
faces = RetinaFace.extract_faces(img, align = True)
6
-
return faces[0]
, faces[1]
7
8
9
3
4
def RFace(img):
5
faces = RetinaFace.extract_faces(img, align = True)
6
+
return faces[0]
7
8
9