01Two Different Questions
Computer vision asks: what is in this image? It labels regions, detects objects, and measures pixels. Spatial intelligence asks: where is everything, how is it oriented, and how fast is it moving? It outputs a 3D state a controller can act on.
Classical computer vision is upstream of spatial intelligence. Depth maps, feature descriptors, and segmentation masks are useful ingredients — but they are not the final answer a robot needs.
02Side-by-Side
| Dimension | Computer Vision | Spatial Intelligence |
|---|
| Primary output | Pixels, features, bounding boxes, masks | Position, orientation, velocity of objects in 3D |
| Representation | Image-space, 2D | Geometry-space, 3D + physics |
| Trained on | Labeled 2D images | 3D data with depth (geometric priming) |
| Sim-to-real gap | Sensitive to lighting, shaders, noise | Collapses — state is the same in sim and real |
| Realtime control | Expensive; scales with resolution | Compact state, edge-friendly at 30 FPS |
| Best fit | Detection, inspection, OCR | Robot manipulation, mobile robotics, closed-loop control |
03Why Pixels Break Down for Robots
A robot policy needs realtime spatial state — the exact place and pose of every object it can touch. Deriving that from pixels every frame is a losing proposition: attention scales quadratically, sensor noise leaks into the policy, and the controller cannot close its loop at 30 FPS on edge hardware.
End-to-end vision-language models make this worse. They fold perception, world modeling, and action into one giant token stream, and pay for compute on every frame of every task.
04Geometric Priming as the Alternative
Instead of tokenizing pixels, a spatial model is primed on 3D data with depth. It learns the rules of geometry and physics once, at the model level, and outputs invariants — surfaces, edges, poses — that hold across viewpoints and lighting.
A downstream focused action model consumes those invariants, not raw frames. It stays small, transfers directly from simulation to real hardware, and leaves the pretraining bill where it belongs — with the model provider.
05When to Use Which
- Use computer vision when — the answer lives in the image: defect detection, OCR, medical imaging, content moderation.
- Use spatial intelligence when — a controller has to act on the physical world: manipulation, mobile navigation, tele-op, closed-loop assembly.
- Combine them when — you need semantic labels attached to 3D state — e.g., 'pick the red mug that is 40 cm away, tilted 15°'.
06Frequently Asked
Is spatial intelligence just a rebranded computer vision?
No. Computer vision recovers pixels, features, or depth from images. Spatial intelligence produces a structured, physical description of a scene — a state a policy or planner can act on directly.
Why not use an end-to-end vision-language model?
Vision-language models tokenize every pixel. That works for description, but it makes realtime spatial state expensive and overfits to sensor noise. A spatial model reasons in geometry from the start, so it stays fast and transfers from simulation to real hardware.
When should I still use classical computer vision?
For image-space tasks: detection, segmentation, OCR, and quality inspection. Reach for spatial intelligence the moment a controller needs realtime 3D state.
07Further Reading
For a deeper look at how geometric priming works in practice, see the Spatial AI for Robotics guide, or return to the MORE, Inc. overview.