JSPM

nbis-js

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q57160F
  • License AGPL-3.0-or-later

Nbis (NIST Biometric Image Software) compiled to web assembly!

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");