Guide · Comparison

Spatial Intelligence
vs. Computer Vision.

Both fields aim to help machines see, but they answer different questions. This guide draws a clean line between image-space perception and geometry-space reasoning — and explains why the second is what modern robotics actually needs.

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

DimensionComputer VisionSpatial Intelligence
Primary outputPixels, features, bounding boxes, masksPosition, orientation, velocity of objects in 3D
RepresentationImage-space, 2DGeometry-space, 3D + physics
Trained onLabeled 2D images3D data with depth (geometric priming)
Sim-to-real gapSensitive to lighting, shaders, noiseCollapses — state is the same in sim and real
Realtime controlExpensive; scales with resolutionCompact state, edge-friendly at 30 FPS
Best fitDetection, inspection, OCRRobot 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 whenthe answer lives in the image: defect detection, OCR, medical imaging, content moderation.
  • Use spatial intelligence whena controller has to act on the physical world: manipulation, mobile navigation, tele-op, closed-loop assembly.
  • Combine them whenyou 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.