Most “applications of computer vision” lists read like a brochure: medical imaging, autonomous vehicles, retail, agriculture, security. The categories are not wrong. They are also not useful for anyone who has to actually buy, build, or scope a system. The honest version of this article names which CV problems have hardened into production engineering disciplines, where deployments still break, and what changes when a vision pipeline gains a language component. We work on production computer vision under named engineering constraints — latency budgets, edge hardware, domain-shift between sites — so the framing here favours where the work actually lands, not where the press releases land. What “production computer vision” means in 2026 A small number of CV problem classes carry the bulk of real deployment volume. They share three properties: the task is narrow enough to label, the failure mode is observable, and the economic case survives a deployment engineer’s full cost. Concretely: Manufacturing quality inspection — defect detection on a single product line, surface anomaly detection, dimensional checks. Often a fine-tuned classifier or detector running on an edge GPU next to the camera. Retail vision — cashierless checkout, planogram compliance, on-shelf availability. Multiple cameras, multi-object tracking, a fusion layer that joins detections to SKU and pricing data. Driver-assistance perception — object detection, lane geometry, free-space estimation, multi-sensor fusion. Mature pipelines, optimisation phase rather than initial deployment. Medical imaging — triage, measurement, segmentation on MRI, CT, X-ray, and increasingly digital pathology. Regulated, slow to deploy, but the unit economics are strong once approved. Logistics — parcel sorting, damage detection, dimensioning, automated loading bay observation. Document AI — invoice, form, and ID extraction. This is where computer vision and language models sit next to each other most visibly in production. Agriculture and environmental — yield estimation, weed and pest spotting, deforestation monitoring from satellite and drone imagery. That list is shorter than the brochure list, and the difference matters: these are the categories where a team can reasonably expect a measurable return inside a single fiscal year. How accurate are production CV systems, honestly? This is the question buyers most often get wrong, so it deserves a direct answer. For narrow, well-scoped tasks with good labelled data — defect detection on one product line, barcode reading, face verification under controlled lighting — 99%+ accuracy is routine and reproducible. This is a benchmark-class statement: it shows up in vendor-reported acceptance tests on named production lines and in audit results from deployed systems. For open-world tasks — general object detection in arbitrary scenes, behaviour understanding from raw video, anomaly detection with no examples — top published benchmarks cluster in the 60–85% range depending on the metric (this is a published-survey class observation across leaderboards such as COCO and LVIS). Real-world deployments typically run 5–15 percentage points behind benchmark numbers because of domain shift. That gap is an observed pattern across our engagements rather than a published figure, and it is the single most under-budgeted number in early-stage CV proposals. What still breaks in production Failure class Mechanism Engineering response Domain shift Model trained on factory A degrades on factory B’s lighting, camera angle, or product mix Site-specific fine-tuning loop; held-out evaluation per deployment site Long-tail rare events The events that matter most have the fewest labelled examples Synthetic data, active learning, careful confidence calibration Edge / latency constraints A 200 MB model is fine on a workstation, painful on an embedded camera Quantisation, distillation, TensorRT or ONNX Runtime export, hardware-aware NAS Regulatory and privacy Any system that captures people inherits GDPR / sectoral compliance On-device inference, face redaction at source, retention policies in the pipeline contract These four pain points are not exotic. They are the load-bearing risks of every CV deployment we have shipped, and honest project plans budget engineering time for all four — not just for the initial model. Skipping any one of them is the most common cause of a pilot that demos well and never reaches production. Where computer vision needs a language layer Several of the categories above only become economically useful once a natural-language component sits inside or beside the vision pipeline. This is the intersection that gets called, somewhat unhelpfully, “NLP in computer vision”. The label hides four distinct engineering problems: OCR and document AI — text extraction from images, then NLP for parsing structure (invoices, IDs, forms). The vision step and the language step are usually two models in series. Image and video captioning — generating a natural-language description of a scene. Common in accessibility tooling, media archives, and content moderation. Visual question answering and visual search — taking an image plus a text query and returning a text answer or a ranked result list. Retail visual search is the canonical commercial example. Grounded scene reasoning — using language as input to operate over a scene graph or set of detections, often via a multimodal LLM. These are not interchangeable. A team that asks for “NLP in our CV pipeline” usually means one of the four, and scoping the right one is the difference between a six-week integration and a two-quarter rebuild. We pulled this apart in more detail in NLP in Computer Vision: Where the Two Modalities Actually Meet, which is the right companion read for buyers evaluating multimodal systems. The architectural patterns that fuse vision and language in 2026 are mostly variants of two ideas: CLIP-style dual-encoder embeddings for retrieval and matching tasks, and multimodal transformer decoders (LLaVA, Qwen-VL, Gemini-class, GPT-4o-class) for generative and reasoning tasks. The first is cheap, fast, and well-suited to search; the second is more capable and dramatically more expensive at scale. The build-versus-buy decision shifts year over year — the capability frontier is currently rented from API providers, and the open-source frontier follows roughly six months behind for most tasks. A short tour of where the work actually happens Rather than re-list industries, the more useful question is what kind of CV engineering problem is the dominant one in this sector right now. The fastest 2024–2026 adoption curves — observed across analyst commentary and our own engagements — are in retail (cashierless and shelf analytics), logistics (parcel sorting and damage detection), manufacturing (zero-defect inspection lines), and life sciences (digital pathology, microscopy automation). Older adopters — automotive, security, document processing — are now in the optimisation phase rather than the initial deployment phase, which means the engineering question shifts from “can we make this work” to “can we cut inference cost by half without losing accuracy”. The underlying tooling has converged. PyTorch dominates research and most production training; ONNX is the lingua franca for cross-runtime model export; TensorRT and OpenVINO handle the edge optimisation step; OpenCV still sits underneath almost every pipeline for the unglamorous geometry and preprocessing work. None of this is glamorous, and that is the point — the boring layers are where production reliability lives. What this means for buyers and builders A few things follow from the picture above. First, the categories where CV is genuinely production-ready are narrower than the marketing surface suggests, but they are large enough that the work is real. Second, accuracy numbers from a vendor demo do not transfer to your site without a domain-shift evaluation; we treat the held-out site evaluation as a contractual milestone, not a nice-to-have. Third, if your application needs language understanding over visual content — invoices, shelf labels, captions, search — the right decomposition into OCR / captioning / VQA / grounding determines the cost and risk of the project more than any model choice. For a broader walkthrough of the underlying engineering primitives, our Computer Vision R&D practice page collects the methodology pieces we lean on most often in scoping conversations. Frequently asked questions Where do NLP and CV actually meet in production today — captioning, VQA, document AI, multimodal LLMs? All four, but in different volumes. Document AI (OCR plus structured parsing of invoices, forms, IDs) is the largest production category by deployed seat-count today. Visual search and retail VQA are second. Captioning is concentrated in accessibility, media archives, and content moderation. Multimodal LLMs are the fastest-growing category but still dominantly used through hosted APIs rather than self-hosted deployments in most enterprise settings. What architectural patterns fuse vision and language (CLIP-style, multimodal transformers)? Two dominant patterns. CLIP-style dual-encoder models map images and text into a shared embedding space — fast, cheap, well-suited to retrieval, matching, and zero-shot classification. Multimodal transformer decoders (LLaVA-class, Qwen-VL, Gemini-class, GPT-4o-class) accept images as token-like inputs to a large language model and generate text answers — more capable for VQA, captioning, and reasoning but materially more expensive per inference. How do production multimodal models change the build-versus-buy decision for CV apps? They shift the frontier. Tasks that previously required a custom captioner or a custom VQA model can now be served by a hosted multimodal API at acceptable quality. Buy makes sense when latency tolerance is high, volume is moderate, and the task sits inside the API’s training distribution. Build still wins when latency is sub-100ms, data cannot leave the site, the domain is narrow enough that a small specialised model beats a generalist, or unit economics demand on-device inference. Which CV applications now require an NLP layer to be useful (for example, RAG over visual data)? Document AI is the clearest case — OCR without downstream language parsing is just text extraction, not information extraction. Visual search and product discovery in retail need text query understanding. Any “ask a question about this image / video / PDF” interface is multimodal by definition. RAG over visual archives (engineering drawings, medical reports, internal slide decks) is an emerging category where the language layer is the user interface and the vision layer is the indexing substrate. What are concrete real-world CV applications that fail without NLP integration? Invoice and form processing collapses without it. Accessibility captioning is definitionally a language task. Visual search at scale needs a query-understanding layer. Compliance review of mixed image-and-text documents (insurance claims, KYC, medical records) requires both modalities reading the same artefact. And any “explain what is in this image” feature for end users is multimodal by user-interface necessity. How does the NLP-in-CV stack compare with classical OCR + NLP pipelines for document understanding? The classical stack — OCR engine (Tesseract, Abbyy, AWS Textract) plus a separate NLP layer for parsing — is still the most cost-effective choice for high-volume, well-structured documents where the layout is stable. Multimodal LLM-based document understanding wins on messy, variable layouts and on tasks that need reasoning across the document, at the cost of higher per-page inference cost and harder reproducibility. Many production stacks now run both: classical OCR for the bulk path, multimodal LLM as a fallback for documents the classical pipeline rejects. Image credits: Freepik.