Zubnet AILearnWiki › Vision
Using AI

Vision

Multimodal Vision, Image Understanding
The ability of a language model to understand and reason about images alongside text. You send a photo and ask "what's in this image?" or upload a chart and ask "summarize the trends." Vision-capable models (Claude, GPT-4V, Gemini) encode images into tokens that the language model processes alongside text tokens, enabling unified text-and-image reasoning.

Why it matters

Vision transforms what LLMs can do. Instead of describing a bug in words, you screenshot it. Instead of typing out a table, you photograph it. Instead of explaining a diagram, you share it. Vision makes AI accessible for tasks where text alone is insufficient — which is most real-world tasks. It's the most impactful multimodal capability for everyday users.

Deep Dive

The typical architecture: images are processed by a vision encoder (usually a Vision Transformer or CLIP variant) that converts image pixels into a sequence of visual tokens. These tokens are projected into the same embedding space as text tokens and concatenated with the text input. The language model then processes both visual and text tokens together through its standard attention layers, enabling cross-modal reasoning.

What Models Can (and Can't) See

Current vision models excel at: describing image content, reading text in images (OCR), understanding charts and diagrams, identifying objects and people (when appropriate), and reasoning about spatial relationships. They struggle with: precise counting (especially in cluttered scenes), fine-grained spatial reasoning ("is A above or below B?"), reading small or stylized text, and understanding images that require domain expertise (medical scans, specialized equipment).

Resolution and Cost

Higher resolution images produce more visual tokens, consuming more context window and costing more. Most providers automatically resize or tile images to balance quality and cost. A typical image might produce 500–2000 tokens. Understanding this helps you optimize: don't send a 4K screenshot when a 1080p crop of the relevant area would work better and cost less.

Related Concepts

← All Terms
← Vidu Vision Transformer →