Metadata-Version: 2.1
Name: fingerprints-matching
Version: 0.1.0
Summary: The package for fingerprints matching using minutiae matching algorithm
Home-page: https://github.com/msalman2890/fingerprints_matching
Author: Muhammad Salman Bediya
Author-email: juraij2890@gmail.com
License: MIT License
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: opencv-python
Requires-Dist: numpy

Fingerprint Matching Algorithm
---------------------------------------------

This is a Python implementation of the fingerprint minutiae matching algorithm which will be used in the comparison of two fingerprints and calculate the similarity between them using the match score.

If Match Score is greater than 0.9, then the two fingerprints are more likely to be from the same person and if Match Score is less than 0.9, then it can be concluded that the two fingerprints are not from the same person.

Fingerprint Module Installation
-------------------------------

The recommended way to install the `fingerprints_matching` module is to simply use `pip`:

```console
$ pip install fingerprints_matching
```
Fingerprint Matching officially supports Python >= 3.0.

How to use fingerprint?
-----------------------
```pycon
>>> from fingerprints_matching import FingerprintsMatching
>>> match_score = FingerprintsMatching.fingerprints_matching("image1.png", "image2.png")
```
