Where does code be used to recognition in file detect_facese_real_time.py ?
Closed this issue · 1 comments
mactiendinh commented
And Where does code be used Facenet algorithm to recognition in file detect_facese_real_time.py ? Does you use file detect_facese_real_time.py only detect ?
Thank you !!!
habrman commented
detect_facese_real_time.py
does not exist. Assuming that you mean detect_and_align.py
you have 3 questions:
-
The function
align_image
indetect_and_align.py
finds faces and facial landmarks in an image. -
I'm using Inception Resnet and not Facenet but the usage is the same so it doesn't really matter. It's not used in
detect_and_align.py
. Instead you use it by calling these lines:
feed_dict = {images_placeholder: face_patches, phase_train_placeholder: False}
embs = sess.run(embeddings, feed_dict=feed_dict)
The embeddings that come out can then be seen as multidimensional points. If 2 points are close to each other they correspond to the same person.
detect_facese_real_time.py
is only used to detect faces and landmarks