Just small typo (#716)

This commit is contained in:
Pavan kumar 2017-07-19 18:38:28 +05:30 committed by Davis E. King
parent a621ffb2d9
commit 3e471ade23

View File

@ -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 # Compute the 128D vector that describes the face in img identified by
# shape. In general, if two face descriptor vectors have a Euclidean # shape. In general, if two face descriptor vectors have a Euclidean
# distance between them less than 0.6 then they are from the same # 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. # the vector to the screen.
face_descriptor = facerec.compute_face_descriptor(img, shape) face_descriptor = facerec.compute_face_descriptor(img, shape)
print(face_descriptor) print(face_descriptor)