
The correct completion of the sentence is:
“You can use the Custom Vision service to train an object detection model by using your own images.”
According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn module “Identify features of computer vision workloads,” the Azure Custom Vision service is a specialized component of Azure Cognitive Services for Vision that enables developers to train custom image classification or object detection models using their own labeled image datasets.
The Custom Vision service differs from the Computer Vision service in that it allows full customization — meaning you can upload your own images, tag them manually, and train the model to recognize objects specific to your use case (for example, detecting your company’s products, tools, or vehicles). Once trained, the model can identify and localize these objects in new images by returning bounding boxes and confidence scores, which is precisely what defines an object detection workload.
Microsoft’s AI-900 materials describe object detection as the process of identifying objects in an image and determining their position, typically represented by bounding boxes. Custom Vision supports two main project types:
Image Classification: Determines what is present in the image (e.g., “dog,” “cat,” “car”).
Object Detection: Identifies what is present and where it is located in the image.
In contrast:
Computer Vision provides prebuilt models for general image analysis but doesn’t allow custom model training.
Form Recognizer is used for extracting text and data from structured or semi-structured documents.
Azure Video Analyzer for Media focuses on video content analysis, not custom object detection.
Therefore, based on the official Microsoft AI-900 study guide and Microsoft Learn content, the verified and correct answer is Custom Vision, as it specifically allows training of a custom object detection model using your own images.