YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
Product & Resources
For more information, visit KBY-AI's GitHub Repository.
IDCardRecognition-Docker
Overview
This solutions stands for ID card scanner, ID document reader, ID card reader, ID document recognition, passport scanner, ID scanner, MRZ parser, barcode reader, barcode scan, and MRZ scan, etc.
Docker Run
- Pull docker image.
sudo docker pull kbyai/idcard-recognition:latest
- Run docker container with license key file.
sudo docker run -v ./license.txt:/root/kby-ai-idcard/license.txt -p 8082:8080 -p 9002:9000 kbyai/idcard-recognition:latest
- Run docker container with license key string.
sudo docker run -e LICENSE="xxxxx" -p 8082:8080 -p 9002:9000 kbyai/idcard-recognition:latest
SDK License
This Docker image utilizes KBY-AI's ID Card Recognition Server SDK, which requires a license for each machine or instance on which it runs.
- To get the machine code for license, use the following syntax:
sudo docker run -e LICENSE="xxxxx" kbyai/idcard-recognition:latest
- To request the license, please provide us with the machine code obtained from your console.
Contact us:
๐งEmail: contact@kby-ai.com
๐งTelegram: @kbyaisupport
๐งWhatsApp: +13348402323
๐งDiscord: KBY-AI
๐งTeams: KBY-AI
Try the API
Gradio Demo
To test the Gradio demo from the Docker image, access it at http://127.0.0.1:9002 or http://localhost:9002.
Postman
To test the API, use Postman. Here are the endpoints for testing:
Test with an image file: Send a
POSTrequest to http://127.0.0.1:8082/idcard_recognition.Test with a
base64-encodedimage: Send aPOSTrequest to http://127.0.0.1:8082/idcard_recognition_base64.Download the
Postmancollection to access and use these endpoints easily. Click here