Artificial intelligence is what turned computer vision from a research curiosity into a class of products you can ship. The hard part is not capturing pixels — cameras have been good for decades — but extracting meaning from them at the speed and accuracy a real workflow needs. This article walks through the model families that make modern vision work, the pipelines that put them in production, and the constraints that decide whether a project succeeds or stalls. This piece sits one layer below the broader explainer in Computer Vision and Image Understanding, which separates the four capabilities — classification, detection, segmentation, scene reasoning — that practitioners conflate when they say “image understanding.” Here we stay closer to the machinery: which models do which job, and what changes when you move them from a notebook to a 30 fps camera feed. What “AI in Computer Vision” Actually Means Classical computer vision relied on hand-crafted features: edges, corners, colour histograms, geometric transforms. It worked, but each new task meant a new pipeline. AI changed the economics. Instead of designing features, engineers now train networks to learn them from labelled examples. The same underlying architecture can detect tumours, count cars, read handwritten digits, or classify defects on a manufacturing line — what changes is the training data, not the algorithm. The shift was not theoretical. It was driven by three concrete things: Deep neural networks that scale with data, especially convolutional and transformer-based architectures. GPU acceleration that made training those networks tractable. Our GPU page goes deeper on the hardware side. Large labelled datasets like ImageNet, COCO, and the dozens of domain-specific corpora that came after. We see the practical consequence in almost every engagement: the question is rarely “can a model do this?” — it is which model family, at what input distribution, on what hardware budget. Which Model Family Fits Which Job? Most production vision systems combine a handful of well-understood building blocks. The mapping below is the one we reach for when scoping work, and it lines up with what the wider research literature reports as the dominant deployed families in 2024–2026. Capability Typical model family Strong at Where it breaks Classification CNN (ResNet, ConvNeXt), ViT Whole-image labels, fixed taxonomies Rare classes, distribution shift Detection YOLO, DETR, RT-DETR Bounding boxes, real-time streams Heavy occlusion, very small objects Semantic segmentation U-Net, DeepLab, Mask2Former Pixel-level labels, medical imaging Class boundaries, thin structures Instance segmentation Mask R-CNN, SAM Per-object masks, agriculture Compute cost at high resolution Foundation / multi-modal CLIP, SAM, DINO Zero-shot transfer, weak supervision Domain-specific fine-tuning needed Generative / synthetic Diffusion, GANs Data augmentation, in-painting Distribution fidelity, audit trail Convolutional Neural Networks (CNNs) CNNs remain the workhorse for image classification, segmentation, and many detection tasks. They scan an image with small learned filters that respond to specific patterns — first edges, then textures, then increasingly abstract shapes. ResNet, EfficientNet, and ConvNeXt are the families we see most often in deployed systems, mostly because their inference profile on edge accelerators is well understood and easy to budget. Vision Transformers (ViTs) Transformers, originally built for language, now compete with CNNs on most benchmarks. They split an image into patches and learn relationships between them with attention. ViTs scale better on very large datasets and are now the default for foundation models like CLIP, SAM, and DINO. The trade-off is straightforward — they reward scale, both in data and in compute, which is why CNNs still win on tightly constrained edge deployments. Object Detectors YOLO, DETR, and RT-DETR turn classification into “find the thing and draw a box around it.” They are the engine behind retail analytics, defect inspection, traffic monitoring, and most surveillance pipelines. We covered one of these in detail in Real-Time Computer Vision for Live Streaming. Segmentation Models Where detection draws boxes, segmentation labels every pixel. Semantic segmentation (U-Net, DeepLab, Mask2Former) and instance segmentation (Mask R-CNN, SAM) are essential in medical imaging, agriculture, and autonomous driving — anywhere the exact shape matters more than a bounding box. Generative Models Diffusion models and GANs produce images, but they also help vision in less obvious ways: generating synthetic training data, in-painting occluded regions, and augmenting rare classes. The cross-over with generative AI is one of the more active research frontiers, and in our experience it is also where the next round of cost reductions on labelling will come from. A Realistic Production Pipeline A working vision system is rarely a single model. A typical deployment looks like this: Capture. Camera, sensor, or stream ingestion. The choice of resolution, frame rate, lens, and lighting often matters more than the model. Pre-processing. Resize, normalise, denoise, colour-correct. Cheap to skip, expensive to skip badly. Detection or segmentation. A first model finds the regions of interest. Classification or recognition. A second, often smaller model decides what each region is. Tracking and aggregation. For video, link detections across frames so a single object is not counted four times. Business logic. Counts, alerts, dashboards, integrations with the rest of the stack. Logging and feedback. Capture edge cases for the next round of training. This is where most projects either improve or stagnate. Across the engagements we have shipped, skipping any of stages 5–7 is the most common reason vision pilots fail in production. It is an observed pattern rather than a benchmarked rate, but the shape is consistent: the model is rarely the bottleneck once the data-feedback loop is broken. Where the Hardware Bites Vision models are hungry. A real-time stream at 1080p / 30 fps from a single camera is roughly 60 megapixels per second. Running a modern detector on that load means you need either a capable GPU, a dedicated accelerator (Jetson, Coral, Hailo, FPGA), or a careful trade-off between model size and frame rate. The choice forces several decisions: Cloud vs edge. Latency, bandwidth, and privacy push many systems to the edge. We discussed the trade-off in Computer Vision in Smart Video Surveillance. Precision. FP16 and INT8 quantisation can cut inference cost by 2–4× with minimal accuracy loss when done correctly — observed range across our deployments, not a published benchmark, and the boundary depends on the specific model and calibration data. Batching. Multi-stream pipelines amortise GPU time across cameras, but only if the framework (TensorRT, ONNX Runtime, Triton) supports it cleanly. Industries That Ship It Today AI in computer vision is no longer a “future technology” pitch. The deployed footprint is wide: Manufacturing. Defect detection, dimensional measurement, robotic guidance. See Computer Vision for Quality Control in Manufacturing. Logistics and retail. Shelf monitoring, parcel sorting, queue analytics. See Optimising Logistics with Computer Vision and How Computer Vision Transforms the Retail Industry. Mobility. Lane keeping, pedestrian detection, traffic-light recognition. See Computer Vision Applications in Autonomous Vehicles. Healthcare. Imaging triage, pathology slides, surgical guidance. Public safety. AI-Powered Computer Vision Enhances Airport Safety, perimeter monitoring, and anomaly detection. What Tends to Go Wrong A few failure modes recur across projects. These are observed patterns from the engagements we have run, not survey numbers — but they show up often enough that we treat them as planning heuristics: Training data does not match deployment. Lighting, camera angle, weather, demographics — distribution shift quietly destroys accuracy. No labelling discipline. Two annotators labelling the same class differently means the model learns noise. Optimising the wrong metric. Top-1 accuracy can hide catastrophic failure on the rare class that actually matters. No on-call for the model. A vision system needs the same monitoring discipline as any other production service. Where TechnoLynx Comes In We design and ship computer-vision systems that work outside a Jupyter notebook. That covers data collection, model selection, edge deployment, and the unglamorous integration work that connects perception to the rest of your business. If you are scoping a project — pilot or production — contact us and we can map your problem to the right architecture, hardware, and timeline. FAQ What are the five stages of a CV pipeline, and which require deep learning versus classical methods? The five stages we use in production are capture, pre-processing, detection or segmentation, classification or recognition, and tracking or aggregation (with logging as a cross-cutting concern). Capture and pre-processing are still mostly classical — resize, normalise, denoise, colour-correct — and OpenCV remains the standard tool there. Deep learning takes over from stage three onward, with CNN and transformer backbones doing detection, segmentation, and recognition. How does CV interpret pixels into semantic structures — objects, scenes, relationships? Through a sequence of learned representations. A CNN or ViT first turns raw pixels into feature maps that encode edges, textures, and parts. Detection or segmentation heads then group those features into objects with locations and masks. Scene-level reasoning — which object is doing what to which other object — sits on top, often built with graph models or, increasingly, multi-modal foundation models. The Computer Vision and Image Understanding explainer separates these capabilities in more detail. Where does image understanding go beyond classification, detection, and segmentation today? Scene-graph reasoning, visual question answering, and multi-modal grounding. These are the layers that turn “there is a car” into “there is a car turning left into a one-way street.” They are distinct sub-fields with distinct production cost profiles, and most teams asking for “image understanding” actually need one of them rather than another round of detection accuracy. What role does AI play in connecting CV outputs to downstream reasoning and decision systems? AI handles two things at this seam: the feature extraction that turns pixels into structured outputs (bounding boxes, masks, embeddings), and increasingly the reasoning layer that combines those outputs with text, sensor data, or business rules. Multi-modal models like CLIP and SAM make this stitching cheaper than it used to be, because you can index visual content with the same embeddings you use for text. Is computer vision a dead field, or are there still architecture-level open problems in 2026? It is not dead. The deployed footprint has matured, but architecture-level work continues — efficient transformers, video-native models, scene-graph reasoning, multi-modal grounding, and the data-efficiency problem (how to train competitive models without ImageNet-scale labels) are all active. The economics have just shifted from “can we do this at all?” to “can we do this at the cost and latency the application allows?”. How are multimodal models (CV + LLM) reshaping image-understanding pipelines for production use? Two ways. First, they let teams replace several narrow models with one foundation model plus light fine-tuning, which collapses pipeline complexity. Second, they make zero-shot and few-shot deployment realistic for long-tail classes that never had enough labels to train a dedicated detector. The trade-off is inference cost — foundation models are larger, so the edge-vs-cloud decision in the hardware section above becomes sharper, not softer.