From f467624eec54f9e95152f655903936e71ae73d7a Mon Sep 17 00:00:00 2001 From: Davis King Date: Sat, 25 Jun 2016 14:00:38 -0400 Subject: [PATCH] Changed URLs to point to dlib.net instead of sourceforge.net --- python_examples/face_landmark_detection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python_examples/face_landmark_detection.py b/python_examples/face_landmark_detection.py index f4ed62da6..e9957b647 100755 --- a/python_examples/face_landmark_detection.py +++ b/python_examples/face_landmark_detection.py @@ -18,7 +18,7 @@ # tools. See train_shape_predictor.py to see an example. # # You can get the shape_predictor_68_face_landmarks.dat file from: -# http://sourceforge.net/projects/dclib/files/dlib/v18.10/shape_predictor_68_face_landmarks.dat.bz2 +# http://dlib.net/files/shape_predictor_68_face_landmarks.dat.bz2 # # COMPILING/INSTALLING THE DLIB PYTHON INTERFACE # You can install dlib using the command: @@ -56,7 +56,7 @@ if len(sys.argv) != 3: "execute this program by running:\n" " ./face_landmark_detection.py shape_predictor_68_face_landmarks.dat ../examples/faces\n" "You can download a trained facial shape predictor from:\n" - " http://sourceforge.net/projects/dclib/files/dlib/v18.10/shape_predictor_68_face_landmarks.dat.bz2") + " http://dlib.net/files/shape_predictor_68_face_landmarks.dat.bz2") exit() predictor_path = sys.argv[1]