I am developing an application that gets the fingerprint image bmp of a user from the fingerprint reader hardware and sends it to a linux server that has a collection of such finger print bitmaps. The server should cross verify the fingerprint and fetch the record of the previously enrolled user data associated with a matching finger print.
So far I was able to compile BioAPI for linux and create two BIR templates from passwords. I am unable to find an example of using BioAPI (or similar free fingerprint matching SDKs) to compare two bitmap images or to create a BIR template from such finger print bitmaps.
I would be grateful if anyone can provide any help or suggestions on how to achieve what I am trying to do.
Thanks in Advance Nikhil Mathew
NIST wrote the public domain NIST Biometric Image Software (NBIS) package which includes the BOZORTH3 fingerprint matching algorithm. It's written in ANSI C so it will compile and run on Linux. To use BOZORTH3, you have to first run your fingerprints through the MINDTCT minutiae detector which is also included in NBIS.
See also the NBIS User Guide and the download link.