Skip to content

farinholt/fprynt

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python Bindings for libfprint

Basic bindings for libfprint using boost::python. Currently support is only provided for enrollment and verification (I don't have access to an imaging/identification print reader.

Example:

from fprynt import Reader, Fingers 

reader = Reader()

enrolled = reader.enrolled(Fingers.RightIndex) 
while not enrolled:
    # atleast reader.enroll_stages loops
    enrolled = reader.enroll(Fingers.RightIndex)
    
verified = reader.verify(Fingers.RightIndex)

Compilation:

cd src_dir
mkdir build
cd build
cmake ..
make
cd ..
python example

About

Python bindings for libfprint

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 57.7%
  • Python 26.3%
  • CMake 16.0%