Package Data | |
---|---|
Maintainer Username: | bkremenovic |
Maintainer Contact: | info@boriskremenovic.com (Boris Kremenović) |
Package Create Date: | 2017-10-31 |
Package Last Update: | 2017-11-02 |
Language: | Python |
License: | MIT |
Last Refreshed: | 2025-01-14 15:13:23 |
Package Statistics | |
---|---|
Total Downloads: | 220 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 19 |
Total Watchers: | 2 |
Total Forks: | 9 |
Total Open Issues: | 4 |
Laravel / Lumen package that allows you to match fingerprints scanned with SecuGen Hamster Plus device (using minutiae templates)
composer require bkremenovic/fingerprint-matching dev-master
sudo apt install python
sh vendor/bkremenovic/fingerprint-matching/install.sh
Bkremenovic\Fingerprint\FingerprintServiceProvider::class,
'Fingerprint' => Bkremenovic\Fingerprint\Facades\Fingerprint::class,
Use match()
method using a fingerprint to match as a first parameter, and fingerprint samples folder as a second parameter.
If the fingerprint has been successfully matched, it will return a string containing filename of the matching sample. Otherwise, it will return null.
Fingerprint::match("fingerprints/samples/", "/tmp/filebkdEfX");
Or match with an uploaded file
Fingerprint::match("fingerprints/samples/", $request->file('fingerprint'));