diff --git a/python_examples/face_recognition.py b/python_examples/face_recognition.py index 92972fe73..02fedecc8 100755 --- a/python_examples/face_recognition.py +++ b/python_examples/face_recognition.py @@ -101,7 +101,7 @@ for f in glob.glob(os.path.join(faces_folder_path, "*.jpg")): # Compute the 128D vector that describes the face in img identified by # shape. In general, if two face descriptor vectors have a Euclidean # distance between them less than 0.6 then they are from the same - # person, otherwise they are from different people. He we just print + # person, otherwise they are from different people. Here we just print # the vector to the screen. face_descriptor = facerec.compute_face_descriptor(img, shape) print(face_descriptor)