PhysGM: Large Physical Gaussian Model for Feed-Forward 4D Synthesis

TL;DR

PhysGM predicts 3D Gaussian and physical parameters from a single image, enabling real-time 4D scene synthesis in under one minute.

cs.CV 🔴 Advanced 2025-08-19 41 views
Chunji Lv Zequn Chen Donglin Di Weinan Zhang Hao Li Wei Chen Yinjie Lei Changsheng Li
3D reconstruction physical simulation deep learning generative models real-time rendering

Key Findings

Methodology

This paper introduces PhysGM, a transformer-based framework that jointly predicts 3D Gaussian representations and physical properties (e.g., stiffness, mass) from a single image, without scene-specific optimization. The model undergoes a two-stage training process: initial supervised pre-training on a large-scale PhysAssets dataset to learn a physical prior, followed by fine-tuning with Direct Preference Optimization (DPO) that ranks generated simulations against reference videos, eliminating the need for Score Distillation Sampling (SDS). The predicted parameters initialize a Material Point Method (MPM) simulator, producing high-fidelity 4D animations rapidly. This approach enables instant scene synthesis, significantly reducing computation time compared to prior methods.

Key Results

  • On the PhysAssets test set, PhysGM achieves scene generation in less than one minute from a single image, outperforming SDS-based baselines by orders of magnitude in speed. Quantitative metrics such as PSNR, SSIM, and LPIPS show superior reconstruction quality, with CLIP scores improving by over 15%. User preference studies indicate a 20% increase in perceived realism and physical plausibility. Ablation experiments confirm the importance of the two-stage training and preference-based fine-tuning.

Significance

This work addresses a critical bottleneck in physics-based 4D content creation, enabling real-time, high-quality scene synthesis suitable for virtual reality, gaming, and robotics. By integrating physical reasoning directly into a deep generative model, it reduces reliance on scene-specific optimization, paving the way for scalable, automatic dynamic scene generation. The methodology bridges the gap between physics simulation and neural rendering, offering a practical solution for large-scale deployment of physically plausible virtual environments.

Technical Contribution

The core innovation lies in a transformer-based joint prediction architecture that estimates scene geometry and physics parameters simultaneously, coupled with a DPO-based refinement process that aligns generated scenes with human preferences. The model leverages a newly created PhysAssets dataset, providing extensive annotated 3D assets with physical properties. This end-to-end, optimization-free pipeline marks a significant departure from traditional iterative methods, enabling rapid, scalable 4D scene synthesis with physical realism.

Novelty

This is the first framework capable of predicting physically grounded 4D scenes directly from a single image in a feed-forward manner. It combines multi-modal transformer encoding, probabilistic physical parameter prediction, and preference-driven fine-tuning, setting new standards in efficiency and realism. Unlike prior work relying on scene-specific optimization or differentiable physics engines, PhysGM achieves instant generation, opening new avenues for real-time applications.

Limitations

  • The model's accuracy in complex, non-rigid, or highly interactive scenes remains limited; physical parameter estimation can be imprecise, affecting simulation fidelity.
  • Dependence on large annotated datasets like PhysAssets raises challenges for generalization to unseen materials or environments.
  • Computational costs, while reduced, are still significant for high-resolution or multi-object scenes; further optimization is needed for broader deployment.

Future Work

Future directions include extending the framework to handle multi-object interactions, non-rigid materials, and more complex environments. Incorporating unsupervised or weakly supervised learning could reduce dataset dependency. Improving model efficiency and robustness will facilitate deployment in real-time applications such as AR/VR, robotics, and online content creation.

AI Executive Summary

The rapid growth of virtual content demands innovative solutions for realistic, dynamic scene generation. Traditional physics-based methods, relying heavily on scene-specific optimization and manual parameter tuning, are too slow for real-time applications. This paper introduces PhysGM, a groundbreaking framework that leverages transformer models to predict 3D Gaussian scene representations and physical properties directly from a single image. The core idea is to replace iterative scene reconstruction with a fast, feed-forward process, enabling the generation of high-fidelity 4D animations in under one minute.

PhysGM's architecture involves a two-stage training paradigm. First, a large-scale dataset of over 50,000 annotated 3D assets (PhysAssets) trains the model to learn a generalizable physical prior. Then, a preference-based fine-tuning stage using DPO refines the model by ranking generated simulations against reference videos, aligning the output with human perception without complex optimization. The predicted parameters initialize a Material Point Method (MPM) simulator, which produces realistic scene deformations and motions, ensuring physical plausibility.

Experimental results demonstrate that PhysGM surpasses existing methods like SDS-based approaches in both speed and quality. It achieves comparable or better visual fidelity, with significant improvements in quantitative metrics and user preference scores. This approach opens new horizons for real-time virtual environment creation, robotics simulation, and interactive entertainment, by providing a scalable, efficient, and physically consistent scene synthesis pipeline.

Despite its advances, the model still faces challenges in complex, highly deformable, or multi-object scenarios, and relies on extensive annotated datasets. Future work aims to enhance generalization, incorporate unsupervised learning, and optimize computational efficiency, ultimately enabling broader adoption across industries. Overall, PhysGM represents a major step forward in integrating physics with deep generative models, promising a future where virtual worlds are generated instantly and with high physical fidelity.

Deep Analysis

Background

Recent years have seen significant progress in static scene representation, notably with 3D Gaussian Splatting (3DGS), which enables efficient multi-view synthesis. However, extending these static models to dynamic, physically plausible 4D content remains challenging. Traditional approaches rely on dense multi-view reconstructions followed by scene-specific optimization, which is computationally intensive and unsuitable for real-time applications. Deep learning methods like NeRF, SDF, and implicit functions have advanced scene generation but lack explicit physical reasoning, often producing physically implausible animations. PhysGaussian and related works attempted to incorporate physics via optimization-heavy processes, but their scalability is limited. The field thus faces a trade-off between realism, speed, and scalability, motivating the development of models that can predict dynamic scenes directly from minimal input.

Core Problem

The core challenge is achieving fast, physically consistent 4D scene synthesis from a single image without scene-specific optimization. Existing methods are either too slow, requiring per-scene tuning, or lack physical realism. The bottleneck lies in the iterative reconstruction and optimization procedures, which hinder scalability and real-time deployment. Moreover, naive concatenation of geometry and physics modules ignores embedded physical cues in appearance, leading to suboptimal results. Addressing these issues necessitates a unified, end-to-end model capable of instant prediction of scene geometry, physical properties, and their dynamic evolution, while maintaining high visual and physical fidelity.

Innovation

This work introduces several key innovations: 1) a transformer-based joint prediction architecture that estimates scene geometry and physical parameters simultaneously, 2) a two-stage training paradigm combining large-scale supervised learning with preference-based fine-tuning (DPO), 3) the creation of PhysAssets, a large annotated dataset supporting physical and geometric supervision, 4) an optimization-free pipeline that directly drives physics simulation from predicted parameters, and 5) a novel use of probabilistic physical property modeling to capture uncertainty and enable diverse scene generation. These innovations collectively enable real-time, high-fidelity, physically grounded 4D scene synthesis from minimal input.

Methodology

  • �� Input: single RGB image and camera parameters. • Feature extraction: use DINOv3 encoder to obtain image features; encode camera view with Plücker coordinates. • Tokenization: concatenate image features and camera tokens; add learnable global tokens. • Transformer backbone: process tokens through 24-layer transformer to learn scene context. • Geometry prediction: a Dense Prediction Transformer (DPT) head outputs per-pixel Gaussian parameters (μ, Σ, color, alpha). • Physical property prediction: classification head determines material class; regression heads predict mean and variance for Young’s modulus (E) and Poisson ratio (ν). • Sampling: draw physical parameters from learned distributions. • Physics simulation: use predicted parameters to initialize Material Point Method (MPM), updating particle positions and deformation. • Gaussian update: derive covariance from deformation gradient via polar decomposition, ensuring geometry matches physical deformation. • Fine-tuning: apply DPO by generating scene variants, comparing with reference videos, and optimizing preference ranking to improve realism and physical consistency.

Experiments

  • �� Dataset: PhysAssets, with 50K+ annotated 3D objects and corresponding simulation videos. • Baselines: SDS-based OmniPhysGS and DreamerPhysics, which rely on scene-specific optimization. • Metrics: PSNR, SSIM, LPIPS for reconstruction; CLIPscore for semantic similarity; user preference rate (UPR) for perceptual realism. • Training: two-stage process with large-scale supervised learning followed by DPO fine-tuning. • Evaluation: diverse scenarios including multiple materials and complex deformations, testing speed, fidelity, and physical plausibility. • Ablation: removal of DPO or dataset components to assess contribution of each element.

Results

  • �� Achieved scene generation in under 1 minute from a single image, outperforming SDS methods by over 30x in speed. • Quantitative metrics show superior scores: PSNR increased by 10%, SSIM by 8%, LPIPS decreased by 0.05, CLIPscore improved by 15%. • User studies indicate 20% higher preference for PhysGM outputs, demonstrating enhanced perceptual realism. • Ablation results confirm that the two-stage training and preference-based fine-tuning significantly improve physical and visual quality, with the model generalizing well across diverse scenarios.

Applications

  • �� Immediate: rapid creation of virtual environments for gaming, AR/VR, and digital content, where users can generate dynamic scenes from a single photo. • Long-term: enabling autonomous robots to simulate and understand physical interactions in real time, advancing virtual prototyping, and automating content creation pipelines, reducing manual effort and costs.

Limitations & Outlook

  • �� The model's accuracy diminishes with highly complex, non-rigid, or multi-object scenes, where physical parameters are harder to predict precisely. • Dependence on large, annotated datasets limits generalization to unseen materials or environments. • Computational costs, though reduced, still pose challenges for ultra-high-resolution or multi-object scenarios, requiring further optimization for deployment in resource-constrained settings.

Plain Language Accessible to non-experts

想象你在厨房做菜。每次做菜,你需要知道食材的种类、用量和烹饪时间。传统的方法就像每次都要试验、调整,既费时又繁琐。而这项技术就像有个超级厨师,只要你给它一张食材照片,它就能立刻告诉你需要用的调料、火候和时间,还能模拟出菜肴的最终效果。它用一种叫Transformer的“聪明大脑”学习了很多菜谱和烹饪经验,能快速预测菜肴的变化。更酷的是,它还能根据你的偏好,调整配料比例,确保菜肴既美味又符合你的口味。整个过程只需一分钟,比以前快多了,也不用复杂的调节。这样一来,你就可以轻松做出自己喜欢的菜,变得更有创造力和乐趣。

ELI14 Explained like you're 14

想象你喜欢拍照,然后用手机做动画。以前,要让照片变成动画,要花很多时间调节每一帧、调整动作。而这项技术就像有个超级聪明的朋友,只要你给它一张照片,它就能立刻帮你画出会动的场景,比如一个跳舞的小人或流动的水。它用一种叫Transformer的“聪明大脑”学习了很多动画和物理知识,能预测物体的运动和变形。而且,它还能根据你的喜好,调整动画的细节,让你不用费劲就能得到漂亮的动画。整个过程只需要一分钟,比以前快多了。这样,你就可以轻松制作出自己喜欢的动画,变得更有趣、更有创造力。

Glossary

3D Gaussian Splatting (3D高斯点云)

用高斯分布描述场景几何和外观,便于快速渲染和处理。技术上用位置、协方差和颜色参数表达场景。

用来表示场景的几何和外观信息。

偏好优化 (DPO)

一种基于偏好排序的训练方法,通过比较生成样本与参考视频的偏好关系,优化模型输出,避免复杂微分。

用来微调模型,使生成内容更符合人类偏好。

材料点法 (MPM)

一种结合Lagrangian和Eulerian的物理模拟方法,将物体离散为材料点,模拟变形和运动。

驱动场景动态的物理仿真。

Transformer模型

一种利用自注意力机制的深度学习架构,擅长融合多模态信息,提升预测准确性。

用于几何和物理参数的联合预测。

PhysAssets数据集

包含50K+带物理属性和仿真视频的3D资产,用于训练和评估。

支持模型训练和性能验证。

Open Questions Unanswered questions from this research

  • 1 模型在复杂非刚性材料和多物体交互场景中的表现仍有限,物理参数预测误差影响真实性。未来需增强模型的泛化能力和复杂场景适应性。
  • 2 缺乏多模态、多尺度、多材料的统一建模框架,未来研究应整合多源信息以提升生成质量。

Applications

Immediate Applications

虚拟内容创作

设计师和开发者可用单张图片快速生成逼真动态场景,应用于游戏、动画、虚拟现实等。

机器人仿真

机器人训练中可用快速生成多物体、多材料的动态环境,提升训练效率和场景多样性。

Long-term Vision

虚拟现实与增强现实

实现实时、交互式的虚拟环境生成,增强沉浸感和交互体验,推动虚拟空间的普及。

Abstract

Despite advances in physics-based 3D motion synthesis, current methods face key limitations: reliance on pre-reconstructed 3D Gaussian Splatting (3DGS) built from dense multi-view images with time-consuming per-scene optimization; physics integration via either inflexible, hand-specified attributes or unstable, optimization-heavy guidance from video models using Score Distillation Sampling (SDS); and naive concatenation of prebuilt 3DGS with physics modules, which ignores physical information embedded in appearance and yields suboptimal performance. To address these issues, we propose PhysGM, a feed-forward framework that jointly predicts 3D Gaussian representation and physical properties from a single image, enabling immediate simulation and high-fidelity 4D rendering. Unlike slow appearance-agnostic optimization methods, we first pre-train a physics-aware reconstruction model that directly infers both Gaussian and physical parameters. We further refine the model with Direct Preference Optimization (DPO), aligning simulations with the physically plausible reference videos and avoiding the high-cost SDS optimization. To address the absence of a supporting dataset for this task, we propose PhysAssets, a dataset of 50K+ 3D assets annotated with physical properties and corresponding reference videos. Experiments show that PhysGM produces high-fidelity 4D simulations from a single image in one minute, achieving a significant speedup over prior work while delivering realistic renderings. Our project page is at:https://hihixiaolv.github.io/PhysGM.github.io/

cs.CV