How to Interpret QR Codes in Azure AI Document Intelligence
You have an Azure subscription that contains an Azure AI Document Intelligence resource named AIdoc1. You have an app named App1 that uses AIdoc1. App1 analyzes business cards by calling business card model v2.1. You need to update App1 to ensure that the app can interpret QR codes. The solution must minimize administrative effort. What should you do first?
Community Votes
65% of anonymous learners picked answer B. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
Tests knowledge of Document Intelligence add-on capabilities and model limitations; the common trap is assuming upgrading the existing Business Card model will enable QR codes.
Azure AI Document Intelligence uses add-on capabilities to extract barcodes and QR codes from documents. This page establishes that the Read model must be implemented because the Business Card model does not support QR code extraction, even when upgraded.
Choosing A (Upgrade the business card model to v3.0) because it seems like a simple version bump, but the Business Card model fundamentally does not support the barcode/QR code add-on capability.
Community Discussion (10 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
Implementing the Read model (Option B) is correct because Azure AI Document Intelligence supports barcode and QR code extraction as an add-on capability for most models, including the Read model. To extract QR codes with minimal administrative effort, you simply call the Read model and enable the barCodes/qRCodes add-on feature. This directly fulfills the requirement without needing custom training or unsupported model upgrades.Why the Other Options Are Wrong
Option A is incorrect because the Business Card model explicitly does not support the barcode/QR code add-on capability, even in version 3.0. Option C is incorrect because deploying a custom model requires significant administrative effort for labeling and training compared to using a prebuilt model with an add-on. Option D is incorrect because while the Contract model supports the barcode add-on, it is domain-specific and less appropriate than the foundational Read model for simply interpreting QR codes with minimal effort.Community Comment Notes
Commenters correctly pointed out that add-on capabilities for QR codes are "available within all models except for the Business card model," as Alan_CA noted. Another commenter initially suggested the Contract model due to it having barcodes enabled by default, but the Read model is the standard, lower-effort approach for general extraction. The consensus confirms that upgrading the business card model will not work.Official Reference
Exam Strategy
When asked to extract specific features like QR codes in Document Intelligence, check the add-on capabilities documentation. Remember that certain prebuilt models like the Business Card model have specific exclusions for add-ons, requiring you to pivot to the Read model.