From 35a3f9f983c3b028f1d56fcb9223dab109ad9a80 Mon Sep 17 00:00:00 2001 From: zhulinpinyu Date: Wed, 1 Jul 2020 15:40:52 +0800 Subject: [PATCH] fix annotation --- 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 9df9e6e..e42d39e 100644 --- a/face_recognition/api.py +++ b/face_recognition/api.py @@ -65,7 +65,7 @@ def face_distance(face_encodings, face_to_compare): Given a list of face encodings, compare them to a known face encoding and get a euclidean distance for each comparison face. The distance tells you how similar the faces are. - :param faces: List of face encodings to compare + :param face_encodings: List of face encodings to compare :param face_to_compare: A face encoding to compare against :return: A numpy ndarray with the distance for each face in the same order as the 'faces' array """ -- GitLab