A forward-facing camera captures a road sign, and a compact convolutional neural network — the kind used in real driver-assistance systems — turns that image into a classification in milliseconds. This scene lays the network's stages out in space so you can see the image get smaller and its feature maps get deeper, exactly like a MobileNetV2-style backbone.
UK-specific signage — retroreflective triangles, roundel speed limits, the diagonal-stripe "national speed limit" sign — differs enough from other countries' road signs that ADAS models are usually fine-tuned on regional datasets before deployment, rather than relying on a single global model.
A UK road sign passes through a compact convolutional network laid out in 3D — each block shrinking spatially while growing deeper in feature channels, exactly like a MobileNetV2-style backbone used in real driver-assistance cameras.
Depthwise and pointwise convolution blocks alternate to build up abstract features cheaply, while the classifier at the end turns those features into confidence scores across four UK sign types.
Pick a sign, then degrade the input with weather or dirt and shrink the network with the width slider. Watch the class-score bars shift, and see when the model starts to mis-classify the sign entirely.
MobileNetV2's depthwise-separable convolutions cut computation by roughly 8-9x compared with standard convolutions, which is why they can run in real time on the modest processors found in production ADAS hardware.