AppliedAIPrep logoAppliedAI/Prep
📊 Evaluation & ML Foundations
Core

Object Detection and Segmentation

Detection finds objects as boxes plus labels; segmentation labels pixels (semantic) or per-object pixels (instance). The machinery is shared: a pretrained backbone feeds a head, anchors or queries propose objects, IoU measures box overlap, and NMS removes duplicates. Two-stage detectors (Faster R-CNN) trade speed for accuracy, one-stage (YOLO) flip it, and Mask R-CNN adds a mask branch for instance segmentation. Interviews probe this to see you pick by latency and accuracy and know what NMS, IoU, and anchors actually do.

a free account unlocks the core curriculum tier · no card
RELATED CONCEPTS
PRACTICE THIS IN REAL QUESTIONS
COMPANIES THAT ASSUME THIS
NEXT IN EVALUATION & ML FOUNDATIONSThe Computer Vision Pipeline