From f56ba6b04fdd080e45654ecbe8fbd4c97499b3f6 Mon Sep 17 00:00:00 2001 From: Davis King Date: Fri, 15 Sep 2017 19:57:54 -0400 Subject: [PATCH] Changed code to recommend users to use the new 5 point face landmarking model. --- python_examples/face_recognition.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python_examples/face_recognition.py b/python_examples/face_recognition.py index 02fedecc8..d1b14b35d 100755 --- a/python_examples/face_recognition.py +++ b/python_examples/face_recognition.py @@ -54,9 +54,9 @@ from skimage import io if len(sys.argv) != 4: print( "Call this program like this:\n" - " ./face_recognition.py shape_predictor_68_face_landmarks.dat dlib_face_recognition_resnet_model_v1.dat ../examples/faces\n" + " ./face_recognition.py shape_predictor_5_face_landmarks.dat dlib_face_recognition_resnet_model_v1.dat ../examples/faces\n" "You can download a trained facial shape predictor and recognition model from:\n" - " http://dlib.net/files/shape_predictor_68_face_landmarks.dat.bz2\n" + " http://dlib.net/files/shape_predictor_5_face_landmarks.dat.bz2\n" " http://dlib.net/files/dlib_face_recognition_resnet_model_v1.dat.bz2") exit()