AI-102 Question 110
Select 3You are developing an Azure AI application that processes images uploaded by users. The application must analyze each image to extract specific features such as object detection, image categorization, and text recognition. You decide to use the Azure Computer Vision API to achieve this. Which combination of features should you include in your image processing request to meet the requirements?
- A
DetectObjects
- B
Describe
- C
Read
- D
CategorizeImage
- E
GenerateThumbnail
Show answer and explanation
Correct answers: A, C, D
Explanation
The Azure Computer Vision API offers several features for image analysis. To meet the requirements for object detection, image categorization, and text recognition, the correct features to include are DetectObjects, Read, and CategorizeImage. These features allow the API to detect objects, extract text, and classify images into categories, respectively. Other options such as Describe and GenerateThumbnail are not relevant to the specified requirements.
- A. Correct.
DetectObjects is the correct feature to recognize and identify objects within the image, meeting the object detection requirement.
- B. Incorrect.
Describe is used to generate a textual description of the image, but it is not explicitly required for object detection, categorization, or text recognition in this case.
- C. Correct.
Read is the correct feature for recognizing and extracting text from the image, fulfilling the text recognition requirement.
- D. Correct.
CategorizeImage is the correct feature to group the image into predefined categories, meeting the image categorization requirement.
- E. Incorrect.
GenerateThumbnail is used to create a smaller version of the image and is unrelated to object detection, categorization, or text recognition.