Nikhil Mathew
Nikhil Mathew

Reputation: 687

How to compare two ISO standard fingerprint templates?

I have found the Digital persona Finger FX Open source project that allows me to supply finger print images (bitmap) and saves the fingerprint minutiae data in ISO/IEC 19794-2:2005 format.

https://github.com/FingerJetFXOSE/FingerJetFXOSE.git

How to compare two such ISO/IEC 19794-2:2005 templates?

Can anyone suggest any sample source code or article?

Upvotes: 3

Views: 6964

Answers (2)

Ravanan
Ravanan

Reputation: 586

Code for comparing the ISO templates is not openly available. You need to go through ISO/IEC 19794-2 documentation and implement your own. We tried but ended up with wrong results (like accepting wrong fingerprints, rejecting valid fingerprints). There are fingerprint matching services available which you can try if you are open for the 3rd party services

  1. CAMS
  2. M2Sys
  3. Neurotechnology

Upvotes: 1

methu
methu

Reputation: 21

SourceAFIS has a partial implementation of ISO/IEC 19794-2 and comes with some examples in .NET and Java (experimental).

Upvotes: 2

Related Questions