Mesh4D: 4D Mesh Reconstruction and Tracking from Monocular Video

TL;DR

Mesh4D employs a VAE and diffusion model to reconstruct dynamic 3D meshes from monocular videos, capturing full shape and motion in a single pass.

cs.CV 🔴 Advanced 2026-01-09 38 views
Zeren Jiang Chuanxia Zheng Iro Laina Diane Larlus Andrea Vedaldi
3D reconstruction dynamic meshes monocular video deep learning diffusion models

Key Findings

Methodology

Mesh4D integrates a pre-trained static 3D generator (e.g., Hunyuan3D) with a novel spatio-temporal Transformer-based VAE to encode continuous mesh deformations. During training, skeletal priors guide the latent space, enhancing physical plausibility. The model employs a conditional diffusion process to predict entire animation sequences in one shot, avoiding iterative optimization. Its architecture includes a Transformer encoder capturing long-range dependencies, a skeleton-guided latent space, and a diffusion decoder conditioned on input video and initial mesh, enabling end-to-end inference.

Key Results

  • On a synthetic Objaverse-based dataset, Mesh4D outperformed HY3D 2.1 with IoU of 0.3731 versus 0.3071, and Chamfer distance of 0.0273 versus 0.0370, demonstrating superior shape accuracy. Tracking metrics (ℓ2-Corr 0.0384) also improved significantly, indicating better temporal coherence.
  • In novel view synthesis benchmarks, Mesh4D maintained high fidelity in unseen viewpoints, showing robust generalization. Ablation studies confirmed that skeleton guidance and multi-layer attention contributed over 15% performance gains.
  • Qualitative results reveal accurate reconstruction of complex motions, including occluded parts, with smooth deformation sequences and consistent textures across frames.

Significance

This work advances monocular 4D scene understanding by combining deep generative models with physical priors, enabling efficient, accurate, and complete dynamic mesh reconstruction. It addresses longstanding challenges of capturing unseen surface regions and maintaining temporal coherence, opening new avenues for applications in AR/VR, animation, and robotics. The end-to-end approach reduces reliance on manual optimization, making real-time deployment feasible in future iterations.

Technical Contribution

The key technical innovations include: 1) a Transformer-based spatio-temporal encoder that models long-term dependencies; 2) a skeleton-guided latent space learned via VAE, improving deformation plausibility; 3) a conditional diffusion model that predicts the entire sequence in a single inference step. These components collectively enable holistic, accurate, and efficient 4D mesh reconstruction from monocular videos, surpassing prior methods that rely on per-frame optimization or limited temporal modeling.

Novelty

This study is the first to combine a skeleton-guided VAE with a diffusion-based sequence predictor for 4D mesh reconstruction from monocular videos. Unlike previous static or frame-wise methods, Mesh4D models the entire temporal evolution jointly, capturing complex deformations and occluded regions without explicit multi-view data. Its end-to-end architecture and the integration of physical priors mark a significant leap forward in the field.

Limitations

  • The approach depends on pre-trained static 3D generators, which may limit performance on highly unstructured or non-rigid objects outside training distribution.
  • Synthetic datasets, despite high quality, may not fully reflect real-world complexities, affecting real scene applicability.
  • High computational demand, especially from multi-layer attention mechanisms, poses challenges for real-time applications and scalability.

Future Work

Future directions include integrating multi-modal cues such as depth and shading, optimizing model efficiency for real-time deployment, and extending to real-world datasets. Incorporating physics-based constraints could improve deformation realism, and unsupervised learning strategies may enhance generalization to diverse object categories and complex motions.

AI Executive Summary

Mesh4D signifies a major step forward in monocular 4D mesh reconstruction, addressing the limitations of traditional optimization-based methods that are computationally intensive and often incomplete. By leveraging a deep learning framework that combines a pre-trained static 3D generator, a novel spatio-temporal Transformer-based VAE, and a conditional diffusion model, Mesh4D achieves end-to-end reconstruction of dynamic 3D meshes from a single monocular video.

The core innovation lies in encoding the entire sequence of mesh deformations into a compact latent space guided by skeletal priors during training. This latent space is learned through a Transformer encoder that captures long-range dependencies across space and time, enabling the model to understand complex motions and occluded surface regions. During inference, the model predicts the full animation sequence in one shot, significantly reducing computational cost compared to iterative optimization methods.

Experimental results on a synthetic dataset derived from Objaverse demonstrate that Mesh4D outperforms existing methods such as HY3D 2.1, L4GM, and GVFD in both geometric accuracy and motion tracking. Quantitative metrics show improvements in IoU, Chamfer distance, and tracking correlation, with qualitative results confirming the model’s ability to reconstruct detailed, physically plausible deformations, including occluded parts.

This work has broad implications for fields requiring dynamic scene understanding, such as virtual reality, animation, and robotics. Its end-to-end, efficient approach paves the way for real-time applications, reducing reliance on manual annotation and optimization. Despite current limitations in computational cost and dataset diversity, future research will focus on multi-modal integration, efficiency improvements, and real-world validation, promising a transformative impact on automated 4D scene reconstruction.

Deep Dive

Abstract

We propose Mesh4D, a feed-forward model for monocular 4D mesh reconstruction. Given a monocular video of a dynamic object, our model reconstructs the object's complete 3D shape and motion, represented as a deformation field. Our key contribution is a compact latent space that encodes the entire animation sequence in a single pass. This latent space is learned by an autoencoder that, during training, is guided by the skeletal structure of the training objects, providing strong priors on plausible deformations. Crucially, skeletal information is not required at inference time. The encoder employs spatio-temporal attention, yielding a more stable representation of the object's overall deformation. Building on this representation, we train a latent diffusion model that, conditioned on the input video and the mesh reconstructed from the first frame, predicts the full animation in one shot. We evaluate Mesh4D on reconstruction and novel view synthesis benchmarks, outperforming prior methods in recovering accurate 3D shape and deformation.

cs.CV