Open mmelatti opened 6 years ago
https://github.com/tzutalin/dlib-android-app this lib might be similar. https://github.com/gv22ga/dlib-face-recognition-android this looks relevant too.
Did you ever get anywhere with this?
@rw86347 Yes, check out my public repo:
https://github.com/mmelatti/face_recognition
I'm using postgresql configured for 128 floating points. Good for face databases containing up to around 80 million faces. (More testing required)
I have examples and use cases included.
For android I do basic face captures then TCP images to backend for processing and query face database, and send results back to device. Some image processing could take place on android device instead of server but this logic currently resides in python and uses python libraries.
Description
I'd like to add face recognition to an android application. I'm particularly interested in the face_encoding 128 floating points that this api provides. I have Android apps running OpenCV. I'm trying to decide the best approach and if anyone has experience with this?
I would want to send face_encodings to a backend server (spatial database) to have a more distributed face recognition platform.
Thanks!