All Projects → robertvazan → Sourceafis Java

robertvazan / Sourceafis Java

Licence: apache-2.0
Fingerprint recognition engine for Java that takes a pair of human fingerprint images and returns their similarity score. Supports efficient 1:N search.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Sourceafis Java

sourceafis-net
Fingerprint recognition engine for .NET that takes a pair of human fingerprint images and returns their similarity score. Supports efficient 1:N search.
Stars: ✭ 43 (-68.38%)
Mutual labels:  fingerprint, fingerprint-authentication, feature-extraction
SSBiometricsAuthentication
Biometric factors allow for secure authentication on the Android platform.
Stars: ✭ 87 (-36.03%)
Mutual labels:  fingerprint, fingerprint-authentication
Zklibrary
ZKLibrary is PHP library for reading and writing data to attendance device using UDP protocol. This library useful to comunicate between web server and attendance device directly without addition program. This library is implemented in the form of class. So that you can create an object and use it functions.
Stars: ✭ 126 (-7.35%)
Mutual labels:  fingerprint, fingerprint-authentication
fingerprint-gui
Use fingerprint readers with a Linux desktop environment
Stars: ✭ 47 (-65.44%)
Mutual labels:  fingerprint, fingerprint-authentication
Soter
A secure and quick biometric authentication standard and platform in Android held by Tencent.
Stars: ✭ 1,777 (+1206.62%)
Mutual labels:  fingerprint, fingerprint-authentication
Cordova Plugin Fingerprint Aio
👆 📱 Cordova Plugin for fingerprint sensors (and FaceID) with Android and iOS support
Stars: ✭ 236 (+73.53%)
Mutual labels:  fingerprint, fingerprint-authentication
Rcpi
Molecular informatics toolkit with a comprehensive integration of bioinformatics and cheminformatics tools for drug discovery.
Stars: ✭ 22 (-83.82%)
Mutual labels:  fingerprint, feature-extraction
Fingerlock
Android fingerprint authentication library
Stars: ✭ 203 (+49.26%)
Mutual labels:  fingerprint, fingerprint-authentication
Fingerprintauthhelper
A small library that allows You to easily manage fingererprint authentication inside your Activity or Fragment on devices with fingerprint scanner and Android M and higher. Min sdk 14
Stars: ✭ 444 (+226.47%)
Mutual labels:  fingerprint, fingerprint-authentication
Reprint
A unified fingerprint library for android.
Stars: ✭ 467 (+243.38%)
Mutual labels:  fingerprint, fingerprint-authentication
Fingerprintmanager
A small library to handle Android fingerprint API.
Stars: ✭ 560 (+311.76%)
Mutual labels:  fingerprint, fingerprint-authentication
Biometricauthentication
Use Apple FaceID or TouchID authentication in your app using BiometricAuthentication.
Stars: ✭ 746 (+448.53%)
Mutual labels:  fingerprint, fingerprint-authentication
Rxfingerprint
Android Fingerprint authentication and encryption with RxJava
Stars: ✭ 373 (+174.26%)
Mutual labels:  fingerprint, fingerprint-authentication
Android Goldfinger
Android library to simplify Biometric authentication implementation.
Stars: ✭ 608 (+347.06%)
Mutual labels:  fingerprint, fingerprint-authentication
React Native Fingerprint Identify
Awesome Fingerprint Identify for react-native (android only)
Stars: ✭ 81 (-40.44%)
Mutual labels:  fingerprint, fingerprint-authentication
Blurr
Data transformations for the ML era
Stars: ✭ 96 (-29.41%)
Mutual labels:  feature-extraction
The Building Data Genome Project
A collection of non-residential buildings for performance analysis and algorithm benchmarking
Stars: ✭ 117 (-13.97%)
Mutual labels:  feature-extraction
Dimensionality reduction alo codes
特征提取/数据降维:PCA、LDA、MDS、LLE、TSNE等降维算法的python实现
Stars: ✭ 1,309 (+862.5%)
Mutual labels:  feature-extraction
Fingerprints
Make it easier to compare and cross-reference the names of companies and people by applying strong normalisation.
Stars: ✭ 91 (-33.09%)
Mutual labels:  fingerprint
Nailgun
Nailgun attack on ARM devices.
Stars: ✭ 114 (-16.18%)
Mutual labels:  fingerprint

SourceAFIS for Java

Maven Central Build Status Coverage Status

SourceAFIS is a fingerprint recognition engine that takes a pair of human fingerprint images and returns their similarity score. It can do 1:1 comparisons as well as efficient 1:N search. This is the Java implementation of the SourceAFIS algorithm.

FingerprintTemplate probe = new FingerprintTemplate(
	new FingerprintImage(
		Files.readAllBytes(Paths.get("probe.jpeg")),
		new FingerprintImageOptions()
			.dpi(500)));
FingerprintTemplate candidate = new FingerprintTemplate(
	new FingerprintImage(
		Files.readAllBytes(Paths.get("candidate.jpeg")),
		new FingerprintImageOptions()
			.dpi(500)));
double score = new FingerprintMatcher(probe)
	.match(candidate);
boolean matches = score >= 40;
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].