roop/core/config.py

21 lines
513 B
Python
Raw Normal View History

2023-05-28 20:19:40 +05:30
import insightface
import core.globals
2023-05-28 20:19:40 +05:30
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
2023-05-28 20:19:40 +05:30
def get_face(img_data):
face = get_face_analyser().get(img_data)
2023-05-29 17:50:26 +05:30
try:
return sorted(face, key=lambda x: x.bbox[0])[0]
2023-05-29 17:50:26 +05:30
except IndexError:
return None