To illustrate the overall process of results processing, we provide on this page an example function updateStatus that transforms options from RxJS Observable to human-readable feedback:
This function will show how to process LIQA results into textual warnings (e.g. textWarning). But it can be easily extended to any modifications of DOM elements being only limited by your application user interface (UI).
We suggest several levels of details that you may utilize depending on the complexity of your UI and the variety of feedback you may want to show to your end-user:
This level of detail in feedback allows to provide end-user with a simple and general "binary" status. Here is how it may look and be realized in your system UI:
Here is how your system can parse LIQA output to get the status:
Hint: it might be nearly always a good idea to allow your user to take image only if the quality is good enough. To achieve it, you can add a "Take a selfie" button on your Image Collecting Page with a video stream. Block this "Take a selfie" button until options.imageIsOkay of liqa.quailityStatus$ is not true.
Level 2: "State the reason"
This level of detail in feedback allows to provide end-user with statuses about upper-level parameters influencing face image quality: detection, position, rotation, and illumination (light). Here is how it may look and be realized in your system UI:
Here is how your system can parse LIQA output to get the statuses:
This level of detail in feedback allows to provide end-user with exact problems and suggested actions to improve the face image quality. Please refer to liqa.qualityStatus$ to find out about all parameters and possible values. Here is how it may look and be realized in your system UI:
Here is how your system can parse LIQA output to get the statuses and feedback:
functionparsePosition(options) {let textWarning ='';if (options.facePosition =='too far') { textWarning ='Bring camera closer'; } elseif (options.facePosition =='too close') { textWarning ='Move camera back a little'; } elseif (options.facePosition =='out of frame') { textWarning ='Parts of the face are covered'; } elseif (options.facePosition =='not in center') { textWarning ='Face isn't in center of frame'; } return textWarning}
functionparsePosition(options) {let textWarning ='';if (options.facePosition =='too far') { textWarning ='Bring camera closer'; } elseif (options.facePosition =='too close') { textWarning ='Move camera back a little'; } elseif (options.facePosition =='out of frame') { textWarning ='Parts of the face are covered'; } return textWarning}
Rotation feedback
functionparseRotation(options) {let textWarning ='';if (options.faceRotation =='turn left') { textWarning ='Turn your head to the left'; } elseif (options.faceRotation =='turn right') { textWarning ='Turn your head to the right'; } elseif (options.faceRotation =='incline left') { textWarning ='Incline your head to the left'; } elseif (options.faceRotation =='incline right') { textWarning ='Incline your head to the right'; } elseif (options.faceRotation =='incline up') { textWarning ='Lift your head'; } elseif (options.faceRotation =='incline down') { textWarning ='Lower your head'; } return textWarning}
Illumination feedback
functionparseIllumination(options) {let textWarning ='';if (options.faceIllumination =='too contrast') { textWarning ='Too much contrast. Ajust lighting conditions'; } elseif (options.faceIllumination =='too dark') { textWarning ='Too dark. Blue dots should disappear'; } elseif (options.faceIllumination =='too light') { textWarning ='Too bright. Red dots should disappear'; }return textWarning}