Can I use Firebase ML Kit (Face Recognition) to scan pictures for faces and determine if faces are found, log a user into an account? What I mean is verify that a face is found on the picture and sign a user up. Anyone?
Asked
Active
Viewed 107 times
-6

Frank van Puffelen
- 565,676
- 79
- 828
- 807

Gabriel Hagan
- 11
- 1
-
2Hi Gabriel, your question may be getting downvotes because it did not attend the basic principles for asking a question on this website. Please take a look at these links to understand why: [How to create a Minimal, Complete, and Verifiable example](https://stackoverflow.com/help/mcve) and also [How do I ask a good question](https://stackoverflow.com/help/how-to-ask). Don't worry, just delete the question to get rid of downvotes and post a new one which attends the standard. – sɐunıɔןɐqɐp Aug 04 '18 at 11:36
-
But is there a way ML Kit can achieve this feat? – Gabriel Hagan Aug 04 '18 at 11:38
-
Sorry that you've had a bad experience with down votes Gabriel. Answer below. – Frank van Puffelen Aug 04 '18 at 13:30
1 Answers
0
Firebase ML Kit can perform face detection. It does however not perform face recognition.
In other words: it can tell you that there is a face in a picture (and where it is), but it can't tell you who it is.
This makes it impossible to use ML Kit for authenticating a user.

Frank van Puffelen
- 565,676
- 79
- 828
- 807
-
-
Okay that was very helpful. That was the exact answer I wanted. I tried this and it worked. I just want to detect faces in pictures users will upload and then sign them in. It is prerequisite for signing up. You have to upload a portrait of yourself. And ML Kit did an amazing job with just a few lines of code. Thanks again @Frank van Puffelen – Gabriel Hagan Aug 05 '18 at 23:32
-