AI-102 Question 111
Select 3You are developing an Azure-based application that processes images uploaded by users. The application needs to analyze these images to extract text, identify objects, and detect faces. Which features of the Azure Computer Vision API should you include in your image processing request to fulfill these requirements?
- A
OCR (Optical Character Recognition)
- B
Tagging
- C
Face Detection
- D
Image Moderation
- E
Object Detection
Show answer and explanation
Correct answers: A, C, E
Explanation
To meet the requirements of text extraction, object identification, and face detection, the features OCR, Face Detection, and Object Detection should be included in the image processing request. Tagging and Image Moderation do not address the specific needs described in the scenario.
- A. Correct.
OCR (Optical Character Recognition) is used to extract text from images, which is a requirement in this scenario.
- B. Incorrect.
Tagging provides a list of general keywords or tags associated with the image, but it does not directly fulfill any of the stated requirements.
- C. Correct.
Face Detection is required to identify faces in the images, as specified in the scenario.
- D. Incorrect.
Image Moderation is used to detect inappropriate content but is not relevant to the requirements outlined in this scenario.
- E. Correct.
Object Detection is necessary to identify objects in the image, which is one of the requirements.