[6.5.0] - Release Notes
In this version, the extraction and liveness engines have been improved with new results and diagnostics. A new parameter has also been added in the configuration to set the threshold for facial authentication. This parameter can also be set individually for a specific image through the verifier options. This feature is also available in the service endpoints. In the Rest-API service the /version
endpoint has been changed. Now returns a JSON object with the version of the SDK and modules instead of a single string.
Rest-API Authentication threshold
{
"image1": "/9j/4AAQSkZJRgABAQEAtAC0AAD...",
"image2": "/9j/4AAQSkZJRgABAQEAtAC0AAD...",
"options": {
...
"authThreshold": 60
}
}
Rest-API /version endpoint
-
Before:
"SelphID SDK 6.5.0\n - Module 1 Version: 3.14.0\n - Module 2 Version: 1.0\n - Module 3 Version: 3.14.0\n\nCopyright @ 2024 FacePhi. All rights reserved.\n"
-
Now:
{"license":"Copyright @ 2024 FacePhi. All rights reserved.","modules":[" - Module 1 Version: 3.14.0"," - Module 2 Version: 1.0"," - Module 3 Version: 3.14.0"],"version":"SelphID SDK 6.5.0"}
Added
- Liveness engine
NoneBecauseEyesClosed
diagnostic. - Liveness engine
NoneBecauseFaceOccluded
diagnostic. - Facial engine
FacialMask
extraction result. - Facial engine
ImageQuality
extraction result. - Facial engine
FacialPose
extraction result. - New
FACEPHI_SELPHID_FACIALAUTHENTICATION_THRESHOLD
config parameter. - New
SetCustomFacialAuthenticationThreshold()
method inSelphIDVerifierOptions
. - JSON
"options":"authThreshold"
parameter in service endpoints. - Service
/version
endpoint returns a JSON object, instead a string.