ID Liveness Detection (Beta)
ID Liveness refers to the detection of presentation attack when an identity document is presented in the digital onboarding (e.g. KYC). When the user capture their ID using the mobile device's camera, a printed image, or image displayed on a digital screen are considered high risk of fraud.
FormX provide detection models to these common spoofing types:
- Color Copy
- This involves scanned images, or scanned images printed on paper in color.
- Greyscale Copy
- Scanned copies in greyscale
- Screen Replay
- Photos of IDs displayed on the screen of another device.
This is a Beta feature, please contact support to enable it for your account
Start using ID Liveness Detection
1. Create an extractor
In the Portal, select "Fixed Layout Extractor" when creating a new extractor.
2. Enable ID Liveness
- In the "Manage Rules" tab, select "International ID" under "Document Type"
- Enable "ID Liveness"
- Press "Save" to confirm the changes
3. Using the extractor
You can go to the "Test Extractor" tab and upload images for testing or go to the "API" tab to see integration options.
Attributes
When ID Liveness detection is enabled, the following attributes can be found in the extraction result. The data
object contains the simple boolean values, and the confidence level can be found inside the detailed_data
object.
Key | Description | Value |
---|---|---|
is_color_copy | ID is printed on paper in color | boolean |
is_greyscale_copy | ID is printed on paper in greyscale | boolean |
is_screen_recapture | ID is presented on a electronic screen | boolean |
Example JSON output
{
"status": "ok",
"metadata": {
// metadata of the extraction job..
},
"documents": [
{
"extractor_id": "EXTRACTOR_ID",
"metadata": {
// metadata of the document..
},
"data": {
"is_color_copy": false,
"is_greyscale_copy": false,
"is_screen_recapture": false
},
"detailed_data": {
"is_color_copy": [
{
"confidence": 0.971471169963479,
"extracted_by": "prebuilt.id_liveness",
"value": false,
"value_type": "scalar"
}
],
"is_greyscale_copy": [
{
"confidence": 0.9670849181711674,
"extracted_by": "prebuilt.id_liveness",
"value": false,
"value_type": "scalar"
}
],
"is_screen_recapture": [
{
"confidence": 0.9666324183344841,
"extracted_by": "prebuilt.id_liveness",
"value": false,
"value_type": "scalar"
}
]
}
}
]
}
Updated 11 months ago