External Hardware Fingerprint scanner and android device integration

孤人 提交于 2019-12-04 10:52:57

问题


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.


回答1:


  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


来源:https://stackoverflow.com/questions/31698094/external-hardware-fingerprint-scanner-and-android-device-integration

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!