Latest NIST FRVT evaluation report 2024-12-20
π ID Document Liveness Detection - Linux - Here 
π€ Hugging Face - Here
π Product & Resources - Here
π Help Center - Here
πΌ KYC Verification Demo - Here
πββοΈ Docker Hub - Here
This repository demonstrates ID document detection
, ID card detector
, ID card scanner and reader
ID document scanner and reader
, and passport reader
technology developed by KBY-AI
.
In this repository, we integrated
KBY-AI
'sID document detection
solution intoAndroid
native platform.

Surpported ID Type | Functionalities | Release Type |
---|---|---|
ID Card | Detecting Front/Back Side | Android(Kotlin & Java ) |
Passport | Extracting ID Document's Coordinates | Web Front-end(Javascript ) |
Driver License | Auto Capturing | Server-Linux(Python ) |
Supporting 200+ Countries' ID Documents |
No. | Repository | Release Type |
---|---|---|
1 | ID Card Recognition - Android | Android |
2 | ID Card Recognition - iOS | iOS |
3 | ID Card Recognition - Flutter | Flutter |
4 | ID Auto Capture - React | Web Front-end |
5 | ID Card Recognition - Windows | Server-Windows |
6 | ID Card Recognition - Linux | Server-Linux |
7 | ID Card Recognition - C# | Server-Windows |
β‘οΈ | ID Card Detection - Android | Android |
- The code line below shows how to update SDK with the
license key
: - To request
license key
, please contact us:
π§Email:
[email protected]
π§Telegram:
@kbyai
π§WhatsApp:
+19092802609
π§Discord:
KBY-AI
π§Teams:
KBY-AI
Try to build this repo on Android Studio
by linking real Android
phone, not simulator
. Once it works fine, you are ready to integrate our SDK
to your project.
-
Try to build this repo on
Android Studio
to make sure thatSDK
works fine by linking realAndroid
phone, notsimulator
. Once it works fine, you are ready to integrate ourSDK
to your project.
And then copy theSDK
(folderiddetectsdk
) to theroot
folder in your project. -
Add
SDK
to the project insettings.gradle
.
include ':iddetectsdk'
- Add dependency to your
build.gradle
.
implementation project(path: ':iddetectsdk')
- Step One
To begin, you need to activate the SDK
using the license key
that you have received.
IDDetectSDK.setActivation("...")
If activation is successful, SDK
would return SDK_SUCCESS
. Otherwise, it would return an error message.
- Step Two
Once activation is successful, you can call initialization function supported by our SDK
.
IDDetectSDK.init(assets);
If initialization is successful, SDK
would return SDK_SUCCESS
. Otherwise, it would return an error message.