
Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) official study materials, object detection is a type of computer vision workload that not only identifies objects within an image but also determines their location by drawing bounding boxes around them. This functionality is clearly described in the Microsoft Learn module "Identify features of computer vision workloads." In this scenario, the AI system analyzes an image to find a vehicle and then returns a bounding box showing where that vehicle is located within the image frame. That ability - to detect, classify, and localize multiple objects - perfectly defines object detection.
Microsoft's study content contrasts object detection with other computer vision workloads as follows:
* Image classification: Determines what object or scene is present in an image as a whole but does not locate it (e.g., "this is a car").
* Object detection: Identifies what objects are present and where they are, usually returning coordinates for bounding boxes (e.g., "car detected at position X, Y").
* Optical Character Recognition (OCR): Extracts text content from images or scanned documents.
* Facial detection: Specifically locates human faces within an image or video feed, often as part of face recognition systems.
In Azure, object detection capabilities are available through services such as Azure Computer Vision, Custom Vision, and Azure Cognitive Services for Vision, which can be trained to detect vehicles, products, or other objects in various image datasets.
Therefore, based on the AI-900 study guide and Microsoft Learn materials, the verified and correct answer is Object detection, as it accurately describes the process of returning a bounding box indicating an object's position in an image.