4sure
work in progress
Last updated
Was this helpful?
Was this helpful?
BiometricSDK.captureFace()
.then(capturedImage => {
BiometricSDK.compareFaces(capturedImage, storedImage)
.then(matchResult => {
if (matchResult) {
// Handle successful match
} else {
// Handle mismatch
}
})
.catch(error => {
// Handle comparison error
});
})
.catch(error => {
// Handle capture error
});