d17a440cd6
- refactored "get_face" and "get_all_faces" to "get_face_single" and "get_face_many" respectively - moved all global booleans to top of file
28 lines
652 B
Python
28 lines
652 B
Python
import insightface
|
|
import core.globals
|
|
|
|
FACE_ANALYSER = None
|
|
|
|
|
|
def get_face_analyser():
|
|
global FACE_ANALYSER
|
|
if FACE_ANALYSER is None:
|
|
FACE_ANALYSER = insightface.app.FaceAnalysis(name='buffalo_l', providers=core.globals.providers)
|
|
FACE_ANALYSER.prepare(ctx_id=0, det_size=(640, 640))
|
|
return FACE_ANALYSER
|
|
|
|
|
|
def get_face_single(img_data):
|
|
face = get_face_analyser().get(img_data)
|
|
try:
|
|
return sorted(face, key=lambda x: x.bbox[0])[0]
|
|
except IndexError:
|
|
return None
|
|
|
|
|
|
def get_face_many(img_data):
|
|
try:
|
|
return get_face_analyser().get(img_data)
|
|
except IndexError:
|
|
return None
|