Member-only story
Implementing Facial Recognition in Flutter Apps
In a previous blog, we looked at enabling Facial Recognition in Flutter applications using Amazon Rekognition.
In this blog, we will implement facial recognition in a Flutter application. Let us start creating our desired UI. We will design the UI along the below lines:
The app will initially launch two empty boxes with two plus icons to choose two images. When both are provided, the validate button will appear. On button press, the comparison of selected images is initiated. The result with a matching percentage will be displayed on the screen.
To do this, we will be focusing on the following steps:
- Initiating the action of comparison.
- Converting the raw result into a model.
- Displaying the result of the comparison.
If you want to understand the steps needed to build the UI that lets you select pictures for facial recognition, read our previous blog on the topic that leads up to this point:
