MSVS-VAE: Multi-Scale Anchored VecSet for High-Fidelity 3D Reconstruction

TL;DR

MSVS-VAE employs hierarchical point-shuffle upsampling and local AVS-Conv to achieve high-fidelity 3D reconstruction, 10× faster decoding, and 10× more compactness.

cs.CV 🔴 Advanced 2026-07-27 36 views
Dehao Hao Kaiyi Zhang Tanghui Jia Xiangjun Gao Dongyu Yan Weikai Chen Zeyu Hu Lingting Zhu Yingda Yin Runze Zhang Li Yuan Xin Wang Long Quan
3D reconstruction VAE set-based representation multi-scale efficient decoding

Key Findings

Methodology

MSVS-VAE integrates hierarchical point-shuffle upsampling to densify anchored VecSet latents, enhancing spatial resolution for detailed geometry. The decoder replaces global cross-attention with AVS-Conv, a local, geometry-aware aggregation operator that operates within neighborhoods, reducing computational cost. Multi-scale query decoding fuses coarse global context with fine local details, balancing stability and precision. The training employs TSDF reconstruction loss combined with KL regularization, optimizing the model for detailed surface recovery while maintaining compact latent representations.

Key Results

  • On Objaverse, ABO, and wild datasets, MSVS-VAE outperforms prior set-based and voxel-based VAEs, achieving approximately 10× faster decoding and 10× higher compactness. With 4K tokens, it surpasses SparseFlex and SparC3D in MD (1.395 vs 2.463) and [email protected] (99.72% vs 98.13%), demonstrating superior fidelity and efficiency.
  • On challenging Dora-Bench subsets, MD reaches 1.44×10^-4 with F-score of 97.9%, outperforming existing methods. Ablation studies confirm that hierarchical densification and multi-scale fusion significantly improve reconstruction quality.
  • The model maintains high performance with fewer tokens, showing robustness in complex topologies and thin structures, and achieves real-time decoding speeds, making it suitable for large-scale applications.

Significance

This work advances set-based 3D generative modeling by overcoming the fidelity and efficiency bottlenecks. The hierarchical densification and local feature aggregation enable detailed, high-resolution reconstructions with significantly reduced computational costs. Such capabilities are crucial for scalable 3D content creation, virtual reality, and industrial design, where high detail and speed are essential. The approach bridges the gap between compactness and fidelity, setting new standards for 3D generative models.

Technical Contribution

The paper introduces a hierarchical point-shuffle upsampling mechanism to densify latent sets, enhancing spatial resolution without increasing global complexity. AVS-Conv replaces costly global attention with localized, geometry-aware feature aggregation, reducing computational overhead. Multi-scale query decoding effectively combines global stability with local detail, enabling high-fidelity surface reconstruction. The framework achieves a balance of speed, compactness, and detail, outperforming existing methods in both accuracy and efficiency.

Novelty

This is the first integration of hierarchical point-shuffle upsampling within set-based VAEs, significantly improving spatial resolution. The AVS-Conv operator introduces a local, geometry-aware alternative to global attention, drastically reducing complexity. The multi-scale fusion strategy innovatively combines coarse and fine features during decoding, enabling detailed reconstructions with fewer tokens. These innovations collectively push the frontier of set-based 3D generative modeling.

Limitations

  • Despite improvements, the model struggles with extremely thin or highly complex structures where local neighborhood features are insufficient for complete detail recovery.
  • Training relies on large-scale high-quality datasets, which may limit generalization to unseen or sparse data. Computational costs, while reduced, remain significant for very large scenes.
  • Real-time performance in dynamic or large-scale environments still requires further optimization, especially for mobile or embedded applications.

Future Work

Future directions include adaptive neighborhood sizes for AVS-Conv, multi-scale fusion refinement, and extending the framework to dynamic scenes. Incorporating unsupervised or semi-supervised learning could reduce data dependency. Further optimization for real-time applications and larger scenes will broaden practical deployment.

AI Executive Summary

The quest for high-fidelity, scalable 3D modeling has long been hindered by the trade-off between detail and efficiency. Traditional voxel-based methods deliver detailed reconstructions but at prohibitive computational costs, limiting their scalability. Conversely, set-based representations like VecSet offer compactness and flexibility but lag in capturing intricate details due to sparse latent tokens and reliance on global attention mechanisms. Addressing this challenge, the MSVS-VAE introduces a hierarchical densification strategy—progressively increasing the spatial density of anchored point sets via point-shuffle upsampling. This approach equips the model with finer geometric resolution without sacrificing compactness.

Central to the innovation is the replacement of global cross-attention with AVS-Conv, a local, geometry-aware feature aggregation operator that operates within neighborhoods, drastically reducing computational overhead. Coupled with multi-scale query decoding, which fuses coarse global context with fine local details, the framework achieves a remarkable balance between stability and precision. Extensive experiments on datasets like Objaverse, ABO, and challenging in-the-wild benchmarks demonstrate that MSVS-VAE consistently outperforms prior methods, delivering approximately ten times faster decoding and ten times higher compactness.

The results highlight a significant leap forward in 3D generative modeling, enabling detailed, watertight reconstructions with fewer tokens and less computation. This breakthrough opens new avenues for large-scale 3D content creation, virtual reality, and industrial design, where high detail and efficiency are paramount. Despite its success, the model still faces challenges with extremely thin or complex structures and requires further optimization for real-time applications. Future work will focus on adaptive neighborhood strategies, dynamic scene handling, and broader generalization, promising a vibrant future for high-fidelity 3D modeling.

Deep Dive

Abstract

High-fidelity 3D generative modeling increasingly relies on the latent diffusion paradigm, where the reconstruction quality of the underlying 3D VAE becomes a primary bottleneck. Existing approaches largely follow two paradigms: sparse voxel-based representations achieve strong reconstruction quality but incur significant memory and computational overhead, while set-based representations are compact and continuous yet typically lag in fidelity due to latent sparsity and excessive global smoothness. We propose MSVS-VAE, a hierarchical set-based VAE that closes this fidelity gap without sacrificing compactness. Our key idea is to progressively densify anchored VecSet latents via hierarchical point-shuffle upsampling, increasing spatial capacity for fine-grained geometry modeling. To efficiently decode from the densified hierarchy, we replace global cross-attention with AVS-Conv, a geometry-aware local aggregation operator operating within local neighborhoods rather than the exhaustive latent set. We further introduce multi-scale query decoding to fuse coarse-to-fine latent features, where coarse scales provide stable global context, and fine scales refine localized geometry, reducing artifacts from overly local receptive fields. Extensive experiments on Objaverse, ABO, and in-the-wild benchmarks demonstrate that MSVS-VAE consistently outperforms prior set-based and voxel-based VAEs, delivering approximately 10x faster decoding than prior set-based methods and approximately 10x higher compactness than voxel-based baselines.

cs.CV