How to use biometric fingerprint reader to develop a fingerprint database

ぃ、小莉子 提交于 2019-12-03 21:06:37
Tito

You can use the WBF (Windows biometric Framework) API that is free, but you must first verify if your biometric device is WBF compatible. The documentation and samples for WBF are for C++, but there is a wrapper sample in C# that you can download here: Cirrostrata biometrics Regarding how to convert the scanned data into an image, you can check this post: How to convert winbio data into image. Hope this helps to start.

You can use the WinBioNET .NET wrapper for Windows Biometric Framework (WBF). It has a demo winforms app in the solution. Just open it up, select the demo app as the "startup project" and run. If you have any devices connected it will enumerate it at startup.

As an alternative wrapper to WinBioNET as mentioned by Robinicks there is WinBiometric.Net.

Disclaimer: I do not own this project.

It has a really nice test project for playing around with the different API functions available in the Windows Wiometric Framework. This test project was monumental in helping me understand the Windows Biometric Framework.

The WinBiometric.Net wrapper has a claim of 100% API coverage, a NuGet package and has the MIT license.

I found it to generally have a very high quality of code as well.

As for storing the fingerprints in a database you could use the WinBioCaptureSample API function to capture a sample, which can then be stored in a database. The sample can be converted into an image as well, there is a nice example of this in the wrapper.

I know this is an old question but I figured I'd post anyway.

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