From cb533a04eb540cc6a92270247bcfd45ef63040ec Mon Sep 17 00:00:00 2001 From: sbourigault Date: Wed, 12 Apr 2017 09:51:37 +0200 Subject: [PATCH] Adds the missing points to the chin feature. --- face_recognition/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/face_recognition/api.py b/face_recognition/api.py index 390a9274a..5bd8d6403 100644 --- a/face_recognition/api.py +++ b/face_recognition/api.py @@ -122,7 +122,7 @@ def face_landmarks(face_image, face_locations=None): # For a definition of each point index, see https://cdn-images-1.medium.com/max/1600/1*AbEg31EgkbXSQehuNJBlWg.png return [{ - "chin": points[0:14], + "chin": points[0:17], "left_eyebrow": points[17:22], "right_eyebrow": points[22:27], "nose_bridge": points[27:31],