
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
yoonik-face-api
Advanced tools
Functionalities for biometric processing (detection, verification and identification) for YooniK.Face.
This repository implements an integration SDK to facilitate the consumption of the YooniK.Face API, an YooniK Services offering.
For more information please contact us.
NODE 16 and later
npm install yoonik-face-api
Verifies the faces similarity between two images in base 64
const apiKey = "YOUR-X-API-KEY";
const baseURL = "YOUR-API-ENDPOINT";
const { Face, ImageUtils, VerifyImagesRequest} = require('yoonik-face-api');
const client = new Face({apiKey, baseURL});
const payload = new VerifyImagesRequest();
const iu = new ImageUtils();
(async () => {
try {
const img1 = await iu.imagePath_base64_encode("<IMAGE_PATH>")
payload.setFirstImage(img1);
const img2 = await iu.imagePath_base64_encode("<IMAGE_PATH>")
payload.setSecondImage(img2);
let result = await client.verify_images(payload);
console.log(result);
} catch (error) {
console.error('Exception when calling client.verify_images: ', error);
}
})();
If you're interested in using YooniK.Face API for identification purposes, please visit our examples.
FAQs
Functionalities for biometric processing (detection, verification and identification) for YooniK.Face.
The npm package yoonik-face-api receives a total of 1 weekly downloads. As such, yoonik-face-api popularity was classified as not popular.
We found that yoonik-face-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.