According to the Microsoft Azure AI Fundamentals (AI-900) Official Study Guide and the Microsoft Learn module “Explore computer vision in Azure,” the Computer Vision service can analyze images to detect objects, landmarks, celebrities, and brands.
The brand detection capability in the Computer Vision Image Analysis API uses pre-trained models to identify well-known brand logos within images. When an image is analyzed, the service returns brand names, confidence scores, and bounding box coordinates where the logos appear.
Let’s examine the other options:
A. Face: Detects and analyzes human faces, not brand logos.
B. Custom Vision: Used for training custom models to recognize unique objects (e.g., company-specific products), not pre-built brand detection.
D. Form Recognizer: Extracts text and data from structured or semi-structured documents like invoices and receipts.
Thus, since the question specifies identifying well-known brands using a pre-built AI model, the correct Azure service is Computer Vision.
Submit