How can we Reduce response time for face_recognition python script given below?

102 Views Asked by At

import face_recognition

known_image = face_recognition.load_image_file("passport.png")

unknown_image = face_recognition.load_image_file("myphoto.png")

biden_encoding = face_recognition.face_encodings(known_image)[0]

unknown_encoding = face_recognition.face_encodings(unknown_image)[0]

results = face_recognition.compare_faces([biden_encoding], unknown_encoding)

print(results)

1

There are 1 best solutions below

0
On

I would recommend following Adrian at pyimagesearch. He's a Phd comp sci person that puts out ALOT of material for computer vision. I can gaurentee that the info you are looking for, he has a blog about it. Probably even different versions for how to put on a rasp pi too like this home security blog post. Good luck! His books are good too