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...
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
Implementation
We’ll again be using the analyze_image() function from the ComputerVisionClient class. ...