According to the Microsoft Azure AI Fundamentals (AI-900) study guide and Microsoft Learn documentation on Azure AI Vision, OCR is a computer vision technology that detects and extracts printed or handwritten text from images, scanned documents, or photographs. The OCR feature in Azure AI Vision can analyze images containing handwritten notes, recognize the characters, and convert them into machine-readable digital text.
This process is ideal for digitizing handwritten meeting notes, forms, or classroom materials. OCR works by identifying text regions in an image, segmenting characters or words, and then applying language models to interpret them correctly. Azure’s OCR capabilities support multiple languages and can handle varied handwriting styles.
Other options are incorrect because:
B. Object detection identifies and locates objects (like cars, animals, or furniture) within an image, not text.
C. Image classification assigns an image to a predefined category (e.g., “dog” or “cat”) rather than extracting text.
D. Facial detection detects or recognizes human faces, not written text.
Therefore, to convert handwritten notes into digital text, the correct computer vision technique is Optical Character Recognition (OCR).
Submit