简体   繁体   中英

How to get exact feature vector from adafruit fingerprint sensor using arduino

I am trying to get the exact feature vector to save each fingerprint values in to the database. By according to the Adafruit library it display only the fingerprint template .But template is different for the same finger and I cannot identify the exact finger by matching from my client software.

Any help for this ? Any algorithm to convert this fingerprint template into feature vector or match each other.

Any method to get the character file (feature vector) from the fingerprint sensor ?

The algorithm for matching templates is unknown; the manufacturers did not release it probably because it's IP. You can't compare byte-by-byte because as you've discovered the generated template isn't always the same for the same finger. If you notice, there's a confidence value as well as different security levels implying there are different criteria for matching prints depending on the system parameters. The best you can probably do is store the templates on your database but use it as a second factor to authenticate users. What I mean is,

  • you can have a user enter some unique ID at a terminal and place their finger as well,
  • your Arduino queries your server with that ID as a key,
  • the server replies with the fingerprint template associated with that ID,
  • the Arduino forwards this template to the module and sends a command to perform a 1:1 match between the template just gotten from your database and the template just generated from the user's finger.
  • If they match, then you know you have the right user. Else, he's an impostor.

Or you can just make do with the local storage on the module and use your server only for assigning IDs during enrollment. If you still want to go ahead to get the character file from the module, you can try the UpChar command in the module's datasheet and see if you have any luck with it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM