FaceMatch

Accura Scan face biometrics solution matches the selfie image with the image on the id card

Steps to Install and Run the FaceMatch Docker

Step 1:

Pull AccuraFacematch Docker image using the command docker pull accurascan/facematch:<latest tag>

Visit https://hub.docker.com/r/accurascan/facematch to check the latest available version of AccuraFaceMatch

Example:
docker pull accurascan/facematch:3.0.0

Step 2:

Run the docker by using the command: sudo docker run -d -it -p port-you-want-accurafacematch-to-run-on:80 --restart=always accurascan/facematch:<latest tag>

Example
sudo docker run -d -it -p 3001:80 --restart=always accurascan/facematch:3.0.0

Step 3:

Generate a license from developer account from “https://accurascan.com/” using your server details

Upload your license accessing "https://<yourdomain:port>" using a browser, Example is shown in the image below.

Step 4:

Use “https://yourdomain:port/api.php” (POST request) to access the API, an example post request is shown below.

POST https://yourdomain:port/api.php

Request Body

NameTypeDescription

image1*

file

Upload your image file

image2*

file

Upload your image file

Last updated