Microsoft Certified Azure AI Fundamentals · Free Practice Question Medium
Question 10
An e-commerce platform needs to extract both product descriptions (text) and identify merchandise defects (scratches) from user-uploaded images. Which Azure services should be combined?
-
A
Dense Captioning and Segmentation
-
B
Face Detection and Image Analysis
-
C
Custom Vision and Translator
-
D
OCR and Object Detection
Reveal correct answer
Correct answer: D
Explanation
Overview of the Problem
An e-commerce platform that needs to extract product descriptions from images as well as identify physical defects (e.g., scratches) requires the ability to process both text and visual content within the same images. This situation calls for combining computer vision technologies that can handle distinct tasks.
Role of OCR and Object Detection
OCR (Optical Character Recognition):
OCR is a technology that converts text within images into machine-readable text. It is essential for extracting product descriptions that are embedded in the image.Object Detection:
Object detection is used to locate and identify specific objects or features within an image. In this scenario, it is used to detect merchandise defects such as scratches by recognizing and localizing these imperfections.
Explanation of the Combined Workflow
Extracting Product Descriptions:
By applying OCR, the system scans user-uploaded images to detect and convert any textual information into digital text that can be indexed and searched.Identifying Merchandise Defects:
Object detection algorithms analyze the visual content of the images to identify defects. These algorithms provide bounding boxes and classification scores, helping determine the presence and location of scratches or other damage.
Integration in an E-commerce Context
Combining these technologies enables a comprehensive workflow where an image is processed twice—once to extract descriptive text and again to detect visual defects. This approach improves the overall quality of product information and ensures that any issues with merchandise are automatically flagged, enhancing both the shopping experience and quality control.
Implementation Considerations
Service Integration:
In an Azure environment, this can be implemented using Azure Cognitive Services. The Computer Vision API provides OCR capabilities as well as object detection features.Performance and Accuracy:
Fine-tuning both components is essential. For example, ensuring the OCR engine accurately reads various fonts and backgrounds, and training the object detection model on diverse images of defects, will enhance overall performance.
Microsoft Documentation Reference
Azure Cognitive Services – Computer Vision
Microsoft's Educational Content For This Topic:
A.
Segmentation identifies exact defect pixels (overkill) + captions describe scenes
B.
Face detection irrelevant to products
C.
Translator unnecessary unless multilingual
D.
OCR extracts text (product descriptions)
Object Detection finds defect locations
Discussion
Think the marked answer is wrong, or have a better explanation? Share it below — comments appear after review.
