Reputation: 767
i am doing my final year proj in fingerprint authentication. i 've completed binarization, thinning, minutiae extraction. i am doing it in matlab. i am stuck with the verification. i don't know how to perform verification. so please help me out to solve this problem. i would be grateful to ppl who help .. thanks in advance. please help me out with code for verification or with algorithm atleast... thanks a lot...
Upvotes: 3
Views: 1621
Reputation: 3744
I can't help you with writing your own verification, but i did fingerprint verfication in the past with Griaule Fingerprint SDK. I hope this helps a bit.
Upvotes: 0
Reputation: 134581
The usual way is to use some form of statistical classifier. The most simple is Bayesian (which I believe won't do for fingerprints). In biometry most popular ones are GMM (Gaussian Mixture Model) or HMM (Hidden Markov Model). Another approach is to use neural network as a classifier.
Upvotes: 2