AI-102 Question 112
Select 3You are building an Azure AI solution that processes images uploaded by users. You need to analyze the uploaded images to extract tags, detect objects, and identify the dominant colors in the images. Which features should you include in your request to the Azure Computer Vision API?
- A
Tags
- B
Objects
- C
Color
- D
Faces
- E
Celebrities
Show answer and explanation
Correct answers: A, B, C
Explanation
To meet the requirements of extracting tags, detecting objects, and identifying dominant colors, the 'Tags', 'Objects', and 'Color' features must be included in the request to the Azure Computer Vision API. The 'Faces' and 'Celebrities' features are not relevant as the scenario does not specify any need for facial recognition or celebrity identification.
- A. Correct.
Tags feature provides descriptive keywords for the image content, which is required for extracting tags.
- B. Correct.
Objects feature identifies and detects objects within the image, which is part of the requirement.
- C. Correct.
Color feature determines the dominant colors in the image, which is needed for this use case.
- D. Incorrect.
Faces feature detects human faces in the image, which is not relevant for this scenario.
- E. Incorrect.
Celebrities feature identifies well-known individuals in the image, which is not applicable for the given requirements.