An engineer is developing a system for real-time object detection on a mobile device with limited computational power. The highest priority is inference speed, even if it means a slight trade-off in accuracy, especially for very small objects. Which object detection model architecture is most suitable for this scenario?
-
A
Faster R-CNN, because its two-stage approach with a Region Proposal Network (RPN) provides superior accuracy.
-
B
A one-stage detector like YOLO or SSD, because it performs localization and classification in a single pass, optimizing for speed.
-
C
R-CNN, because it uses an external selective search algorithm that is computationally efficient.
-
D
Mask R-CNN, because it extends Faster R-CNN to provide pixel-level segmentation, which is beneficial for speed.