外部硬件指纹扫描仪和 android 设备集成
External Hardware Fingerprint scanner and android device integration
我想构建一个 android
应用程序,例如使用 fingerprint
scanner
的员工考勤。我想知道,
- 是否可以使用外部硬件设备进行指纹识别
正在扫描?
- 如何将 Android 应用程序与外部硬件 finger 集成
打印扫描设备。
- 如何从外部硬件设备获取数据并将数据存储在本地数据库中。
提前致谢。
- Is it possible using external hardware device for fingerprint scanning?
是的,有一些指纹扫描仪与 Android 平台和 Android 的 SDK 兼容。扫描仪插入 USB 端口,因此您无法同时为平板电脑充电和使用指纹扫描仪。例如:
- http://www.dermalog.com/en/products_solutions/fingerprintscanner/
- http://www.futronic-tech.com/product_fs80h.html
- http://www.crossmatch.com/authentication-hardware/
还有一些设备集成了指纹扫描仪和用于注册和验证多个用户的 SDK。例如三星或iPhone只提供SDK来验证1个用户(设备的用户),但其他制造商提供SDK来注册和匹配多个用户。
- How to integrate Android application with external hardware finger print scanning device.
- How to fetch data from external hardware device and store data in local database.
指纹扫描仪(上引)有 Android SDK 用于注册和验证。其中一些只有 return 指纹图像。仅限指纹扫描仪 return 图像,您必须使用外部库将图像转换为细节并注册并验证为:
我想构建一个 android
应用程序,例如使用 fingerprint
scanner
的员工考勤。我想知道,
- 是否可以使用外部硬件设备进行指纹识别 正在扫描?
- 如何将 Android 应用程序与外部硬件 finger 集成 打印扫描设备。
- 如何从外部硬件设备获取数据并将数据存储在本地数据库中。
提前致谢。
- Is it possible using external hardware device for fingerprint scanning?
是的,有一些指纹扫描仪与 Android 平台和 Android 的 SDK 兼容。扫描仪插入 USB 端口,因此您无法同时为平板电脑充电和使用指纹扫描仪。例如:
- http://www.dermalog.com/en/products_solutions/fingerprintscanner/
- http://www.futronic-tech.com/product_fs80h.html
- http://www.crossmatch.com/authentication-hardware/
还有一些设备集成了指纹扫描仪和用于注册和验证多个用户的 SDK。例如三星或iPhone只提供SDK来验证1个用户(设备的用户),但其他制造商提供SDK来注册和匹配多个用户。
- How to integrate Android application with external hardware finger print scanning device.
- How to fetch data from external hardware device and store data in local database.
指纹扫描仪(上引)有 Android SDK 用于注册和验证。其中一些只有 return 指纹图像。仅限指纹扫描仪 return 图像,您必须使用外部库将图像转换为细节并注册并验证为: