Monitoring Video for User Presence in Azure AI
You are building an internet-based training solution. The solution requires that a user's camera and microphone remain enabled. You need to monitor a video stream of the user and verify that the user is alone and is not collaborating with another user. The solution must minimize development effort. What should you include in the solution?
Community Votes
100% of anonymous learners picked answer C. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
The question tests the ability to select the appropriate Azure AI Vision feature for people counting in a video stream; the common trap is choosing Custom Vision which requires high development effort.
Azure AI Vision Spatial Analysis provides pre-built models to count people and track movements in a video stream. This page establishes that Spatial Analysis is the correct choice to verify a user is alone with minimal development effort.
Choosing object detection in Azure AI Custom Vision because it requires custom training and does not provide out-of-the-box people counting and spatial tracking.
Community Discussion (14 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
Spatial Analysis in Azure AI Vision includes pre-built models likePersonCount specifically designed to detect and track people in a video feed. It requires minimal development effort compared to training a custom model, perfectly meeting the requirement to verify the user is alone.Why the Other Options Are Wrong
Speech-to-text (Option A) cannot detect visual presence, failing the core requirement of monitoring a video stream for another person. Object detection in Azure AI Custom Vision (Options B and D) requires significant development effort to train and deploy a custom model, and it lacks built-in spatial tracking capabilities for continuous video streams.Community Comment Notes
Several commenters pointed out that Spatial Analysis accurately counts people in a camera's field of view. However, FatFatSam noted that "Azure AI Vision Spatial Analysis will be retired" in 2025, which is an important consideration for future implementations despite being the correct exam answer. pabsinaz highlighted that "Object detection requires a lot of effort and does not entirely meet the goal."Official Reference
Exam Strategy
When a question asks to analyze a video stream for people counting or tracking with minimal effort, look for pre-built Azure AI Vision Spatial Analysis features. Avoid Custom Vision for video streams unless explicitly asked to train a custom object detector.