You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add python api that generates desciptor(s) from the aligned image(s) (davisking#1667)
* Add python api that generates desciptor(s) from the aligned image(s)
* Remove asserts from face_recognition.py example/tutorial
* In batch_compute_face_descriptors_from_aligned_images, use for-in loop to simplify the code
Improvde the document on binding methods and the error message if the aligned image is not of size 150x150
"If num_jitters>1 then each face will be randomly jittered slightly num_jitters times, each run through the 128D projection, and the average used as the face descriptor. "
301
356
"Optionally allows to override default padding of 0.25 around the face."
"Takes an aligned face image of size 150x150 and converts it into a 128D face descriptor."
361
+
"Note that the alignment should be done in the same way dlib.get_face_chip does it."
362
+
"If num_jitters>1 then image will be randomly jittered slightly num_jitters times, each run through the 128D projection, and the average used as the face descriptor. "
"Takes an array of images and an array of arrays of full_object_detections. `batch_faces[i]` must be an array of full_object_detections corresponding to the image `batch_img[i]`, "
312
-
"referencing faces in that image. Every face will be converting into 128D face descriptors. "
373
+
"referencing faces in that image. Every face will be converted into 128D face descriptors. "
313
374
"If num_jitters>1 then each face will be randomly jittered slightly num_jitters times, each run through the 128D projection, and the average used as the face descriptor. "
314
375
"Optionally allows to override default padding of 0.25 around the face."
"Takes an array of aligned images of faces of size 150_x_150."
380
+
"Note that the alignment should be done in the same way dlib.get_face_chip does it."
381
+
"Every face will be converted into 128D face descriptors. "
382
+
"If num_jitters>1 then each face will be randomly jittered slightly num_jitters times, each run through the 128D projection, and the average used as the face descriptor. "
0 commit comments