I want to create one application which can match fingerprint form my server existing fingerprints, on my server side some fingerprints saved with the help of external fingerprint scanner. can i match with saved fingerprint?
Asked
Active
Viewed 1,321 times
1 Answers
1
- Match in database
You cannot match fingerprint in database, please read this : https://en.wikipedia.org/wiki/Fingerprint_recognition
You have to match templates, thanks to a specific algorithm. To match on server, you need AFIS solution: https://en.wikipedia.org/wiki/Automated_fingerprint_identification
- Extract fingerprint in Android or iOS
It's not possible to obtain fingerprint data (image or template) from Android or iOS except with an external fingerprint reader with specific SDK.

LaurentY
- 7,495
- 3
- 37
- 55
-
I have sample Fingerprint image from external Fingerprint scanner, and stored all the images in data base. – Vishal Jul 03 '17 at 07:29
-
You cannot match fingerprint image, you have to extract template to match them, do you read https://en.wikipedia.org/wiki/Fingerprint_recognition ? – LaurentY Jul 03 '17 at 07:50
-
@Vishal Is it useful ? – LaurentY Jul 06 '17 at 12:24