Add 5 point model

This commit is contained in:
Adam Geitgey 2017-09-23 21:42:09 +01:00
parent af5a73bd58
commit 167b671ea0
3 changed files with 4 additions and 1 deletions

View File

@ -9,6 +9,9 @@ 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")

View File

@ -14,7 +14,7 @@ test_requirements = [
setup(
name='face_recognition_models',
version='0.2.0',
version='0.3.0',
description="Models used by the face_recognition package.",
long_description=readme,
author="Adam Geitgey",