Luther
Luther

Reputation: 625

How to use face authentication using Biometric api

I used fingerprint authentication using Biometric api and its working.I need to do the same for face recognition ,like for a login button click instead of password i'll be using face authentication .

So is it possible with Biometric api or I have to use Open cv?

Upvotes: 6

Views: 10346

Answers (2)

Valley 1 One
Valley 1 One

Reputation: 1

BOTH BIOMETRIC SAFE PARAMETERS ARE:

  1. FACE
  2. FINGERPRINT
  3. FINGERPRINT READER FOR LIFE SIGN DIRECTLY IN SYNCH WITH ALL PARAMETERS.
  4. FAIL PROOF:ADDED VERBAL COMM. TO AUTHORIZE THE AUTHENTICATION

Upvotes: -1

Isai Damier
Isai Damier

Reputation: 984

You can authenticate all form factors (i.e. face, iris, fingerprint, etc.) using the AndroidX Biometric library as explained in this blog post and this blog post. Essentially, your app is not responsible for targeting specific form-factors. The library does the work for you. If a device supports facial biometrics, then your user will see a prompt for facial authentication; if your device supports fingerprint biometrics, then your user will see a prompt for fingerprint authentication; and so on.

Upvotes: 10

Related Questions