
Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) Official Study Guide and the Microsoft Learn module "Explore computer vision in Microsoft Azure," there are multiple types of computer vision tasks, each designed for different goals such as recognizing, categorizing, or locating objects within an image.
In this question, the application performs two distinct tasks: locating birds within an image and identifying their species. Each of these corresponds to a different type of computer vision capability.
* Locate the birds # Object detection
* Object detection is used when an AI system needs to identify and locate multiple objects within a single image.
* It not only recognizes what the object is but also provides bounding boxes that indicate the exact position of each object.
* In this scenario, locating the birds (drawing rectangles around each bird) is achieved through object detection models, such as those available in the Azure Custom Vision Object Detection domain.
* Identify the species of the birds # Image classification
* Image classification focuses on identifying what is in the image rather than where it is.
* It assigns a single label (or multiple labels in multilabel classification) to an entire image based on its contents.
* In this case, determining the species of a bird (e.g., robin, eagle, parrot) is achieved through image classification, where the model compares visual features against learned patterns from training data.
Incorrect options:
* Automated captioning generates descriptive sentences about an image, not object locations or classifications.
* Optical character recognition (OCR) extracts text from images, irrelevant in this case.