Search⌘ K
AI Features

Brand Detection in the Images

Explore how to use Azure Computer Vision to detect brand logos in images. Learn to implement the analyze_image function for brand identification, draw bounding boxes, and interpret confidence scores to integrate brand detection into your AI projects.

We'll cover the following...

Introduction

In this lesson, we’re going to build a script that will detect the brand logos in the images. Brand detection uses hundreds of thousands of logos available in a global database. The Computer Vision API identifies the brands in the images or videos and then return the brand name, the confidence score and the bounding-boxthe co-ordinates where the brand logo is present in the image as a JSON response.

Implementation

We’ll again be using the analyze_image() function from the ComputerVisionClient class. ...