i want a programing source code for fingerprint recognition time and attendance payroll system in java language and also the source code for capturing a fingerprint image and storing in ms access in java language for the same projcet
Software/Hardware used:
software ia java language and ms access
ASKED:
January 19, 2011 12:17 PM
UPDATED:
January 14, 2012 2:27 PM
For fingerprint recognition you can try GrFinger for Java which is an SDK that you can use to integrate for fingerprint recognition. You can go to their website http://www.grfinger.com for more information and they do have trial versions you can download and install.
i want source code for how to match fingerprints from stored databases using java
Google “bioapi” for many references to the standard for fingerprint (and other biometric) recognition.
Your question indicates that you are not familiar with how fingerprint matching actually works. You may want to research the basics before trying to implement some kind of matching system.
Fingerprints are converted from the initial scanned image (which should be at least 600 dpi in a one-inch by one-inch image to meet FBI standards). Proprietary algorithms are used to convert the image into a set of “minutiae” (plural of minutia).
The minutiae essentially describes the fingerprint in terms of significant features (loops, whorls, splits, and other information about how the ridges and valleys relate to one another) and the minutiae relate each of the individual minutia to the others in terms of relative distance and orientation.
The algorithms that do the minutiae conversion and matching are generally proprietary, so that each of the commercial companies that sell these systems to government agencies can try to claim that their matching system works better than the others.
With the BioAPI, the code to “enroll” prints and “match” prints is pretty simple.
Trying to write your own code to transform a scanned image into minutiae, or to try to do your own minutiae matching would be a job for a seriously advanced programmer with a PHD in math, physics, and/or biometric engineering.
Check out this tutorial fingerprint SDK in java :
http://javacomponent.blogspot.com/2012/01/java-fingerprint-digitalpersona.html