
Explanation:

The correct answer is Azure AI Custom Vision.
According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and the Microsoft Learn module "Explore computer vision in Azure", the Azure AI Custom Vision service is specifically designed to allow users to train, test, and deploy custom image classification and object detection models using their own images.
The Azure AI Custom Vision service extends the capabilities of Azure's general-purpose Computer Vision API by enabling organizations to upload their own labeled datasets, define custom tags (labels), and train models that are optimized for their specific use cases. This makes it ideal for object detection scenarios-such as detecting equipment in a manufacturing line, identifying products on store shelves, or recognizing medical images-where general-purpose models may not suffice.
By contrast, the Azure AI Computer Vision service provides pre-built models for tasks such as image description, tagging, face detection, and OCR (optical character recognition). It does not allow users to train their own models with custom data. Similarly, Azure AI Document Intelligence is used for extracting structured information from documents (forms, receipts, invoices), and Azure Video Analyzer for Media focuses on analyzing video content for insights and metadata extraction.
The AI-900 study guide emphasizes that the Custom Vision service supports two key model types:
* Image Classification - categorizing entire images based on predefined tags.
* Object Detection - identifying and locating multiple objects within an image by drawing bounding boxes.
Therefore, when the question specifies "train an object detection model by using your own images," the correct Azure service is Azure AI Custom Vision, as it provides the necessary tools for training, evaluating, and deploying custom computer vision models tailored to a user's dataset.
Hence, the verified correct answer is: Azure AI Custom Vision.