LIQA Light 1.2
Doc v2
LIQA is a JavaScript library developed by Haut.AI to help companies to standardize the incoming photos of faces. LIQA stands for "Live Image-Quality Assurance" and allows to perform a no-reference image quality assessment. LIQA estimates captured live video stream via a mobile device camera utilizing only the device's computational capabilities and returns feedback to a user to improve the quality of an image.
LIQA Light is a highly optimized and simplified package for running the analysis on the widest range of devices with minimal delays and minimum requirements. LIQA Light performs a non-verbose analysis of face recognition and face illumination and provides a human-readable status of quality. The settings are defined based on Haut.AI’s expertise in facial skin analysis.
Connect to NPM registry
Request access and credentials
LIQA Light is distributed as a private NPM package with simple installation. To get access to the registry, please:
Go to the haut.ai website, to the contact form
Leave us a message with a short description of your company, planned usage (test of technology embedding, small / medium / large business, etc.), and a contact e-mail so we could get back to you
After approving the request, you will be contacted via e-mail by Haut.AI and receive credentials for accessing the registry. For authorization, you will get your personal token as a long string:
password
- BASE64_ENCODED_PERSONAL_ACCESS_TOKEN.npmrc
fileregistry_link
- URL to set connection to the repository (smth like https://pkgs.dev.azure.com/haut-ai/.../npm/registry/)
Please, pay attention that the credentials always have an expiration date.
Please, store the provided credentials securely on your side
Create authorization files
Go to your system Home directory:
for Windows (by default, installed on C drive):
C:\Users\%username%
for Linux and MacOS:
$HOME/
Put the provided
.npmrc
file in your Home directoryIf you already have
.npmrc
file, open it and append the lines from the shared by Haut.AIPut your
password
instead of "<BASE64_ENCODED_PERSONAL_ACCESS_TOKEN>" placeholderPut your contact e-mail instead of
<your contact email>
Install LIQA in your project:
Call these commands in your project with the provided to you
registry_link
Update LIQA in your project
Update LIQA to fetch the latest bug fixes:
Run demo page
The demo page requires Node.js to be installed on your computer.
If Node.js is not installed, please follow the instructions at https://nodejs.org/en/ to correctly install it for your system.
The demo page requires Vue to be installed on your system. Install Vue via command.
Now follow to the directory where the LIQA is located
Build LIQA package:
Then, run the Vue demo:
Run the local server:
Open
localhost:8080
in your browser.
API Methods
static checkCameraAvailable: Promise<void>
The checkCameraAvailable
method allows to validate if camera and browser are correctly setup and suitable for launching the LIQA.
This method requires access to the device camera and will launch (and then stop) the camera to check that all parameters are correctly setup and all API methods are available in current browser. We recommend calling this method for every start before LiqaLight.init
.
We highly recommend to setup a .catch operation on LiqaLight.checkCameraAvailable method with some resulting warning for the end-user. The detected issues with LIQA Light start might be critical and it is better to recommend your user to try one of stable browsers (e.g. Chrome on Android, Safari on iOS) / check their permissions on camera access for different apps, etc.
Unfortunately, LIQA Light can not detect the exact reason why the system fails to provide the full necessary access to camera and its methods.
static init: Promise<void>
The init
method is the main API method that plays a role of an entry point and initializesLiqaLight
:
play: Promise<void>
The play
method starts live video capturing via the frontal camera and image processing at once.
captureSelfie: Promise<string>
The captureSelfie
method collects a final selfie image and returns it as base64
code. It might be a good idea to show the resulting image to a user and to let him / her confirm or decline (and try once more to take a better image) the image to be sent:
Here is how the preview of an image can be done:
stop: void
The stop
method stops the live capturing and all calculations.
Stream results: data Observable
qualityStatus$: Observable<StatusData>
The qualityStatus$
(RxJS) Observable sends the general status of the current frame quality.
Integration example
HTML elements:
CSS:
Initialization:
Data visualization (v1.1):
The statusMsg
can also be paired with UI elements modification (depending on your system design):
Now we are ready to start a stream capturing and processing:
Selfie logic (img
here is an <img>
element):
Last updated