3D Reasoning Collapse
Model Cannot Reason About 3D Structure from Single 2D Image
14 patterns for this goal
Vision models get spatial relationships wrong because 2D image projection is fundamentally lossy for 3D properties — depth, scale, occlusion, and viewing angle all collapse into ambiguous pixel patterns that a model must resolve using learned statistical priors rather than genuine geometric reasoning, and those priors fail whenever a scene departs from the “typical” arrangements seen in training. Spatial reasoning is the largest goal in vision-and-images (14 patterns) because spatial reasoning fails at every stage of the pipeline: localizing an object precisely, inferring its depth or 3D shape, reasoning about what’s hidden behind another object, correcting for viewing angle, judging its absolute size, and staying consistent when several images or a video sequence are involved.
The unifying theme across all 14 patterns is that 2D-to-3D inference is an underdetermined inverse problem, and every vision model attempting 2D-to-3D inference resolves that underdetermination with a learned prior instead of flagging the ambiguity. A flat, shadowless CT slice “must” have depth because the training distribution taught the model that structure implies variation; a small object without a reference “must” be an average size because the training distribution is dominated by average-sized objects; a partially hidden motor “must” have an ordinary interior because visible fragments statistically continue in the most probable way. The mitigation strategies converge accordingly, regardless of which of the 14 patterns is in play: don’t trust a single monocular/single-view estimate for anything safety-critical (add stereo, multi-view, active sensing, or domain-specific geometric constraints), and separate confidence for the visible-evidence portion of an estimate from the extrapolated/hallucinated portion, since collapsing both confidence types into one score is exactly what makes spatial-reasoning errors invisible until the errors cause a failure downstream.
Because “depth fails” breaks down into distinguishable sub-mechanisms with different mitigations: depth-estimation-failure covers the general monocular-ambiguity problem, depth-estimation-hallucination-monocular-vision focuses specifically on hallucinating depth structure in featureless/flat regions, 3d-reasoning-collapse covers volume/shape inference rather than distance, and spatial-reasoning-failures-in-3d-environments covers relational 3D claims (above/below/inside) built on top of those depth estimates.
perspective-blindness is a recognition failure — the model can’t identify the object at all from an unfamiliar angle (accuracy drops from 95% frontal to 20% upside-down). perspective-distortion-misunderstanding is a reasoning failure one step further — the model does recognize the object but misinterprets the perspective-induced foreshortening as actual physical deformation (calling a normal box “damaged” because it looks trapezoidal from an angle).
No. scale-confusion covers confusing objects at different physical scales that look visually similar (a toy car mistaken for a real one, since texture/color features are scale-invariant). size-scale-miscalibration is specifically about estimating an object’s absolute dimensions (mm/cm/meters) with no visible reference object present, which produces 2x-10x errors even for objects the model correctly identifies.
Substantially and non-linearly. Per occlusion-mishandling, accuracy stays above 95% at 0-20% occlusion, drops to 60-80% at 20-50%, and falls below 40% past 50% occlusion — and per occlusion-reasoning-failures, the model’s confidence does not fall proportionally, producing exactly the high-confidence/low-accuracy gap that makes occlusion dangerous in safety-critical pipelines.
| Pattern | Mechanism |
|---|---|
| 3D Reasoning Collapse | Single-image models trained for classification never learn 3D volume/shape, only surface texture, so grasp-relevant volume estimates are wrong 40-60% of the time |
| Bounding Box Errors | Localization is a regression task orthogonal to classification; coarse feature maps and imprecise training annotations produce 10-15% box-size error |
| Depth Estimation Failure | Monocular depth is inherently ambiguous without stereo/temporal cues; models fall back on size-based priors that fail on atypical scale combinations |
| Depth Estimation Hallucination (Monocular Vision) | When shadows, texture, and perspective cues are minimal, the model hallucinates plausible depth structure instead of reporting ambiguity |
| Multi-Image Spatial Inconsistencies | Each image is reconstructed independently with no cross-view consistency constraint, so the same object’s position/size contradicts across views |
| Occlusion Mishandling | Training data underrepresents occluded objects, so detection accuracy collapses (<40%) once occlusion exceeds 50% |
| Occlusion Reasoning Failures | Models hallucinate hidden structure, color, or count from learned priors and stay confident despite having no visual basis for the hidden portion |
| Perspective Blindness | Training data is biased toward frontal/canonical views, so recognition accuracy collapses for rotated, upside-down, or extreme-angle objects |
| Perspective Distortion Misunderstanding | Perspective-projection foreshortening is misread as physical object deformation, or converging parallel lines are misread as non-parallel geometry |
| Relative Position Confusion | Models learn statistical shortcuts about typical object arrangements instead of genuine relational reasoning, causing left/right and containment errors |
| Scale Confusion | Texture and color features used for recognition are scale-invariant, so models can’t distinguish a miniature object from a full-size one |
| Size/Scale Miscalibration | Absolute size requires a distance or reference cue; without one, the model defaults to a learned “typical size” prior, causing 2x-10x errors |
| Spatial Attention Bias | Convolutional architecture and center-composed training photos bias detection toward the image center, dropping to 20-40% accuracy at the corners |
| Spatial Reasoning Failures in 3D Environments | Complex scenes with occlusion and non-frontal angles compound depth and relational errors, hitting 40-60% error versus <10% in simple frontal scenes |
Total: 14 patterns
Model Cannot Reason About 3D Structure from Single 2D Image
Inaccurate Object Localization; Bounding Boxes Don't Match Actual Object Boundaries
Monocular Depth Estimation Wrong; 3D Positioning Fails
Vision models fail to accurately estimate depth from single images; hallucinate depth cues when monographic features (shadows, perspective, texture) are ambiguous or misleading
When given multiple images of same scene/object from different angles, vision models produce inconsistent spatial reasoning; 3D reconstruction conflicts across views; same object described differently depending on which image model processes first
Model Fails to Reason About Occluded (Partially Hidden) Objects
Vision models fail to correctly reason about occluded objects; assume objects have properties they can't see (like internal structure, color, or continuation behind occluding object)
Model Fails to Recognize Objects Viewed from Unusual Angles or Perspectives
Vision models misinterpret perspective distortion; assume objects are deformed when they're actually normally-shaped but viewed from non-frontal angles; or fail to account for perspective when estimating actual object dimensions
Model Misunderstands Spatial Relationships Between Objects
Model Fails to Distinguish Objects of Different Scales; Confuses Small/Large Versions
Vision models correctly identify objects but estimate their absolute size (mm, cm, meters) incorrectly; errors range 2x-10x when no reference object is visible; relative sizing also fails when all objects are unfamiliar
Model Fixates on Image Center or Edges; Misses Objects in Peripheral Regions
Vision models fail to correctly reason about 3D spatial relationships (above/below, left/right, inside/outside, containment) from single or multiple images; errors increase with scene complexity and ambiguous viewing angles