Search⌘ K
AI Features

Verifying Faces using Face SDK

Explore how to use the Azure Face API and Face SDK to detect and verify faces by obtaining unique Face IDs. Learn to compare faces within images, interpret confidence scores, and implement face verification logic with a small dataset.

Introduction

So far we’ve explored how the Face service detects and identifies faces in an image. In this lesson, we’ll look at how the Face API service can verify the face of a person. First, we’ll be identifying the faces in a set of images. The Face API will return a unique Face ID for each Person object. Then, we’ll use the Face API to detect if the new face belongs to a person whose Face Id we already have.

We’ll be using a very small dataset in this lesson. You can download the dataset by clicking the download button below.

face_verification_images_dataset.rar

Implementation

Let’s start the implementation step by step. First, we’ll detect the faces and get ...