[CVPR 2026] PixARMesh: Moving Beyond SDFs to Autoregressive Mesh-Native Scene Reconstruction
PixARMesh: Autoregressive Mesh-Native Single-View Scene Reconstruction
PixARMesh is an autoregressive framework for mesh-native single-view scene reconstruction that jointly predicts object layouts and geometry. Built upon mesh generative models like EdgeRunner and BPT, it achieves state-of-the-art scene reconstruction by generating "artist-ready" compact meshes directly in a single forward pass.
Executive Summary
TL;DR: PixARMesh is a breakthrough in 3D scene reconstruction that shifts away from the traditional, "heavy" Signed Distance Field (SDF) paradigm. Instead of predicting implicit volumes and then running Marching Cubes, it uses an autoregressive Transformer to "type out" vertices and faces directly from a single RGB image. This results in artist-ready, lightweight meshes (7k faces vs 2M) with state-of-the-art layout accuracy.
Background: In the landscape of 3D vision, we are seeing a "Transformer-takeover." PixARMesh positions itself as the first framework to scale object-level mesh generation (like EdgeRunner) to full-scene holistic reconstruction, effectively solving the "layout + geometry" puzzle in one go.
The Problem: The "SDF Tax" and Optimization Traps
For years, single-view scene reconstruction has been stuck with two major inefficiencies:
- Geometric Bloat: SDF-based methods generate "dense soups" of triangles. A single chair might have 100k faces when 1k would suffice for a game engine.
- Disconnected Pipelines: Existing methods often reconstruct objects first and then try to "fit" them into a scene using post-hoc optimization, which often fails in cluttered or occluded indoor environments.
Methodology: The Autoregressive Bridge
The core innovation of PixARMesh is the unified token stream. It treats a 3D scene like a sentence:
[Context Information] -> [Object 1 Pose] -> [Object 1 Mesh] -> [Object 2 Pose] ...
1. Pixel-Aligned PC-Encoder
To make the model "see" the image while thinking in 3D, the authors use a Pixel-Aligned Encoder. Every 3D point in the back-projected point cloud is projected back onto the 2D image plane to "grab" local DINOv2 features. This provides the appearance-based intuition that raw depth maps lack.
2. Scene Context Aggregation
Reconstructing an occluded table leg is impossible in isolation. PixARMesh uses cross-attention between the target object's latent features and the entire scene's global point cloud. This allows the model to "guess" missing geometry based on the presence of nearby walls or other furniture.
Figure 1: The PixARMesh pipeline showing the transition from 2D image to fused latent codes and finally to the autoregressive token sequence.
Experiments: Performance Meets Practicality
In head-to-head battles on the 3D-FRONT dataset, PixARMesh didn't just win on accuracy; it won on usability.
- Geometric Fidelity: While diffusion models like DepR are strong, PixARMesh matches them in F-Score while being "mesh-native."
- Efficiency: The output meshes are ready for Blender or Unity without any cleanup.
- Layout Accuracy: By jointly training pose and mesh, the model achieved a 56% Box IoU—a massive leap over prior compositional methods.
Figure 2: Qualitative comparison. Note the clean wireframes and accurate alignment compared to the fragmented outputs of SDF-based methods.
Critical Analysis & Conclusion
Takeaway
The shift from implicit (SDF) to explicit (Mesh) autoregression is likely the future of 3D content creation. PixARMesh proves that we can get "clean" geometry without sacrificing the scene-level coherence required for AR/VR applications.
Limitations
- Inference Speed: Being autoregressive, it still takes minutes (~4.5 min) to generate a scene, whereas feed-forward holistic models take seconds.
- Upstream Reliance: As shown in the ablation studies, the model is quite sensitive to the quality of initial instance segmentation masks. If Grounded-SAM misses an object, PixARMesh cannot "hallucinate" it back into the sequence.
Future Outlook: The next step for this tech is likely real-time autoregression (perhaps through speculative decoding or more efficient tokenization) and extending the "vocabulary" to handle background structures like walls and floors natively.
