Add cnn_face_detector model

This commit is contained in:
Adam Geitgey 2017-08-18 15:44:10 -07:00
parent 4bf55aa4d9
commit e8b5d679d2
3 changed files with 4 additions and 1 deletions

View File

@ -12,3 +12,6 @@ def pose_predictor_model_location():
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")

View File

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