2017 © Pedro Peláez
 

library fingerprint-matching

Laravel / Lumen package that allows you to match fingerprints scanned with SecuGen Hamster Plus device (using minutiae templates)

image

bkremenovic/fingerprint-matching

Laravel / Lumen package that allows you to match fingerprints scanned with SecuGen Hamster Plus device (using minutiae templates)

  • Thursday, November 2, 2017
  • by bkremenovic
  • Repository
  • 0 Watchers
  • 5 Stars
  • 31 Installations
  • Python
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 15 % Grown

The README.md

Laravel / Lumen fingerprint matching for SecuGen Hamster Plus

Laravel / Lumen package that allows you to match fingerprints scanned with SecuGen Hamster Plus device (using minutiae templates), (*1)

Include a package into your project using composer:

composer require bkremenovic/fingerprint-matching dev-master

Install dependencies:

sudo apt install python
sh vendor/bkremenovic/fingerprint-matching/install.sh

Open your config/app.php and add the following to the providers array:

Bkremenovic\Fingerprint\FingerprintServiceProvider::class,

In the same config/app.php and add the following to the aliases array:

'Fingerprint' => Bkremenovic\Fingerprint\Facades\Fingerprint::class,

Usage

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., (*2)

Example:

Fingerprint::match("fingerprints/samples/", "/tmp/filebkdEfX");

Or match with an uploaded file, (*3)

Fingerprint::match("fingerprints/samples/", $request->file('fingerprint'));

The Versions

02/11 2017

dev-master

9999999-dev

Laravel / Lumen package that allows you to match fingerprints scanned with SecuGen Hamster Plus device (using minutiae templates)

  Sources   Download

MIT

The Requires

 

by Boris Kremenović

laravel lumen fingerprint recognition matching secugen hamster