seamfix / android-nfiq-calc

Seamfix Android SDK that is used to calculate the NFIQ of a captured fingerprint image. Project is an Android (Kotlin) implementation of a C-based NFIQ calculator found here https://github.com/lessandro/nbis
Apache License 2.0
11 stars 6 forks source link
android kotlin nfiq

android-nfiq-calc

Seamfix Android SDK that is used to calculate the NFIQ of a captured fingerprint image. Project is an Android (Kotlin) implementation of a C-based NFIQ calculator found here https://github.com/lessandro/nbis

Usage

NFIQUtil.calculateNFIQUsingBitmap(context: Context, bitmap: Bitmap)

or

NFIQUtil.calculateNFIQUsingRawBytes(rawBytes: ByteArray, imageWidth: Int, imageHeight: Int)

Install

This repository can be found on JitPack:

https://jitpack.io/#seamfix11/android-nfiq-calc

Add it in your root build.gradle at the end of repositories:

allprojects {
        repositories {
            ...
            maven { url "https://jitpack.io" }
        }
    }

Add the dependency:

dependencies {
            compile 'com.github.seamfix11:android-nfiq-calc:1.0.1'
    }