Package Exports
- nbis-js
- nbis-js/dist/nbis-js.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (nbis-js) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
NBIS-JS
Web assembly transpilation of some functions from the old NIST-NBIS project. Currently the functions we implemented are finger Matching, with Mindtct and Bozorth, and NFIQ 1.0 score.
At the moment this project only runs in the browser.
Usage
import {
checkDuplicateFingerFromBase64,
getNfiqScoreFromBase64,
} from "./nbis-js.js";
await checkDuplicateFingerFromBase64(
"fingerWsqInBase64",
"otherFingerWsqInBase64"
);
await getNfiqScoreFromBase64("fingerWsqInBase64");