Search⌘ K
AI Features

Find Similar Faces using Face SDK

Explore how to detect and compare faces using Azure Cognitive Services Face API. This lesson guides you through extracting Face IDs from individual and group photos, then finding and marking similar faces using bounding boxes for clear visualization.

Introduction

In this lesson, we’re going to find similar faces from images. First, we’ll try to find out the Face ID of a person from an image. Then, we’ll find out the Face IDs for persons from a group photo and try to see whether the Face API is detecting a similar face or not.

Implementation

We’ll start the implementation in a step by step manner. First, we’ll get the Face ID for a single face image. Then we’ll get the Face IDs from a multi-face image and then try to ...