Stop signs
Stop signs are well-suited to YOLO: distinct shape, predictable color, usually unobstructed.
YOLO · Object detection
We use YOLO to find stop signs and traffic lights in Street View imagery. Here's what it is, why it's fast, and the honest story of where it helps and where it stumbles.
Plain-language definition
YOLO is an object detector. Feed it an image and it returns a list: "stop sign, this box, 92% confident. Traffic light, that box, 64% confident."
The name stands for "You Only Look Once." Older detectors scanned an image multiple times: first proposing regions to consider, then deciding what was in each. YOLO does both jobs in a single forward pass. That's why it's fast enough for real-time video, and why we can run it across thousands of Street View frames without breaking the budget.
If U-Net is a careful colorist, YOLO is a quick spotter. It's not painting the object. It's putting a box around it and naming it before moving on.
Want to go deeper? Visit the official YOLO site →
Visual model
This is a stylized version of one frame after the model has run. Each box has a label and a confidence score.
Two detections, two confidences. The planner decides where to set the threshold for action.
In our pipeline
stop_sign or traffic_light with a confidence score.What it found
Stop signs are well-suited to YOLO: distinct shape, predictable color, usually unobstructed.
Lights are harder. They sit far from the camera, get backlit, and disappear into tree canopy. Recall takes the hit.
An F1 of 0.77 isn't perfect, but for screening it's plenty. A planner reviewing a corridor can spot-check a handful of detections in the explorer and immediately see whether the model is consistent in their study area before relying on it.
Honest limits
Practical takeaway: trust stop-sign detections more than traffic-light detections, threshold by confidence when you need precision, and always use the explorer's Street View link to verify before citing a single point in a memo.
Keep going
Up next · Segmentation
Where YOLO draws boxes, U-Net classifies every pixel. That's how we get crosswalk polygons from aerial imagery.
Read U-Net 101 →Try it
Pick a neighborhood, toggle the traffic-light and stop-sign layers, and click any detection to verify it in Street View.
Open the app →