Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

External Hardware Fingerprint scanner and android device integration

I want to build an android application like employee attendance using fingerprint scanner. I want to know that,

  1. Is it possible using external hardware device for fingerprint scanning?
  2. How to integrate Android application with external hardware finger print scanning device.
  3. How to fetch data from external hardware device and store data in local database.

Thank you in advance.

like image 392
user2028555 Avatar asked Jul 29 '15 10:07

user2028555


People also ask

How do I use an external fingerprint scanner on my Android phone?

You will click on the Biometric Fingerprint Authentication button to go to the Android Fingerprint authentication activity. While at the Fingerprint Authentication activity, press Finger on Finger Reader / Scanner.

Can biometric device be connected to mobile?

It can be added to any android app.

What interface is required for fingerprint sensor?

Explanation : The fingerprint sensor uses a UART interface to store fingerprint data.


1 Answers

  1. Is it possible using external hardware device for fingerprint scanning?

Yes there's some fingerprint scanners compatible with Android Platform and with SDK for Android. Scanners are plugged on USB port so you can't charge tablet and use fingerprint scanner simultaneous. For instance:

  • http://www.dermalog.com/en/products_solutions/fingerprintscanner/
  • http://www.futronic-tech.com/product_fs80h.html
  • http://www.crossmatch.com/authentication-hardware/

There's also some devices with integrated fingerprint scanner and with SDK to enroll and verify multiple users. For instance Samsung or iPhone only provide SDK to verify 1 user (user of device) but others manufacturers provide an SDK to enroll and match multiple users.

  1. How to integrate Android application with external hardware finger print scanning device.
  2. How to fetch data from external hardware device and store data in local database.

Fingerprint scanners (quoted upper) have Android SDK to enroll and to verify. Some of ones only return fingerprint image. For fingerprint scanners only return image, you have to use external library to convert image to minutiae and enroll and verify as:

  • http://www.nist.gov/itl/iad/ig/nbis.cfm
  • http://www.neurotechnology.com/verifinger.html
like image 155
LaurentY Avatar answered Nov 15 '22 18:11

LaurentY