Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
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.
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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.