1.1 Identify features of common AI workloads
1.A retail company wants to use a camera system to identify customers who are wearing masks versus those who are not wearing masks as they enter the store. Which computer vision workload is best suited for this scenario?
- A.Optical Character Recognition (OCR)
- B.Image Classification
- C.Object Detection
- D.Semantic Segmentation
Show answer & explanation
Correct answer: C — Object Detection
- A. Incorrect. Optical Character Recognition (OCR) is a workload designed specifically to detect and extract printed or handwritten text from images. It is not suitable for identifying people or classifying their appearance.
- B. Incorrect. Image Classification assigns a single label to an entire image. While it could classify an image as 'contains person with mask', it cannot handle scenarios with multiple people in the frame or pinpoint which individuals are wearing masks. This makes it unsuitable for a busy store entrance.
- C. Correct. Object Detection is the most appropriate workload. It identifies and localizes individual objects (in this case, people or faces) within an image, typically by drawing a bounding box around them. Each detected object can then be classified (e.g., 'mask' or 'no mask'). This allows the system to accurately assess multiple customers in a single frame.
- D. Incorrect. Semantic Segmentation involves classifying each individual pixel in an image to create a detailed map of different objects. This provides a much higher level of detail than needed for this task and is computationally more expensive and complex than object detection, making it an inefficient choice.