cvtools / utils /face_detector.py
rifatramadhani's picture
wip
e70400c
raw
history blame
228 Bytes
import dlib
def load_face_detector():
"""
Loads the dlib face detector.
Returns:
dlib.detector: The dlib face detector.
"""
face_detector = dlib.get_frontal_face_detector()
return face_detector