21 lines
668 B
Python
21 lines
668 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
__author__ = """Adam Geitgey"""
|
||
|
__email__ = 'ageitgey@gmail.com'
|
||
|
__version__ = '0.1.0'
|
||
|
|
||
|
from pkg_resources import resource_filename
|
||
|
|
||
|
def pose_predictor_model_location():
|
||
|
return resource_filename(__name__, "models/shape_predictor_68_face_landmarks.dat")
|
||
|
|
||
|
def pose_predictor_five_point_model_location():
|
||
|
return resource_filename(__name__, "models/shape_predictor_5_face_landmarks.dat")
|
||
|
|
||
|
def face_recognition_model_location():
|
||
|
return resource_filename(__name__, "models/dlib_face_recognition_resnet_model_v1.dat")
|
||
|
|
||
|
def cnn_face_detector_model_location():
|
||
|
return resource_filename(__name__, "models/mmod_human_face_detector.dat")
|
||
|
|