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
NFIQUtil.calculateNFIQUsingBitmap(context: Context, bitmap: Bitmap)
or
NFIQUtil.calculateNFIQUsingRawBytes(rawBytes: ByteArray, imageWidth: Int, imageHeight: Int)
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'
}