Paper: 2605.15185 Authors: Jiaxin Wu, Yihao Pi, Yinling Zhang, Yuheng Li, Xueyan Zou Categories: cs.CV, cs.AI

The Gap

Video generation models are increasingly framed as “world models” — systems that implicitly learn physics and 3D structure. But existing evaluation methods rely on perceptual metrics (FVD, IS) or human judgment, which don’t directly measure geometric plausibility. A video can look sharp and realistic while violating basic projective geometry: objects shrinking as they approach the camera, rigid structures bending mid-motion, or depth relationships flipping arbitrarily.

Prior work either uses learned discriminators (which inherit dataset biases) or manual inspection (which doesn’t scale). No one has built a quantitative pipeline that directly audits whether generated videos respect the geometric constraints of a 3D world projected onto 2D frames.

Problem: Video models claim to learn "world models"
   |
   v
Gap: No way to measure geometric coherence quantitatively
   |
   v
Assumption: Projective geometry violations are detectable
            from 2D observations (segmentation + tracking)
   |
   v
Method: Lift 2D tracks to 3D, compute geometry residuals
   |
   v
Evidence: PDI catches failures invisible to perceptual metrics
   |
   v
Conclusion: Diagnostic signal for physically grounded video generation

The Increment

One sentence: Before this paper, we evaluated video quality through perceptual similarity; after, we can quantify whether a video obeys the geometric rules of 3D-to-2D projection.

Core Mechanism

PDI-Bench operates in three stages. First, it extracts object-centric observations from generated video using off-the-shelf tools: SAM 2 or MegaSaM for segmentation, CoTracker3 for dense point tracking across frames. This gives you per-object 2D trajectories.

Second, it lifts these 2D tracks into 3D world coordinates using monocular depth estimation (e.g., Depth Anything). Now each tracked point has an estimated 3D position at each frame.

Third, it computes three families of geometric residuals. Scale-depth alignment checks whether objects shrink/grow consistently with their depth changes (perspective projection law). 3D motion consistency verifies that an object’s velocity in 3D space remains smooth, not teleporting or jittering. 3D structural rigidity measures whether rigid objects (like buildings or furniture) maintain fixed inter-point distances across frames, or whether they warp and bend.

Input Video
    |
    v
[Segmentation]  -->  Object masks per frame
    |
    v
[Point Tracking]  -->  2D trajectories (x,y) over time
    |
    v
[Monocular Depth]  -->  3D coordinates (X,Y,Z) per point
    |
    v
[Geometry Residuals]
    |
    +---> Scale-depth alignment error
    +---> 3D motion consistency error
    +---> 3D structural rigidity error
    |
    v
PDI Score (lower = more coherent)

Structural metaphor: Think of PDI-Bench as a forensic accountant auditing a company’s books. The video generator is the company claiming its finances (3D world) are sound. PDI doesn’t trust the surface presentation (perceptual quality). Instead, it reconstructs the underlying ledger (3D coordinates) from the public statements (2D frames), then cross-checks three types of inconsistencies: (1) Do the reported asset sizes (object scales) match their stated distances (depths)? (2) Do the cash flows (object motions) follow smooth trajectories, or are there unexplained jumps? (3) Do the fixed assets (rigid structures) maintain their book values (inter-point distances), or are they being quietly revalued frame-by-frame? If the numbers don’t reconcile, the books are cooked — the video isn’t geometrically coherent.

Key Concepts

  • Projective Geometry Residuals: In a real 3D world captured by a camera, certain mathematical relationships must hold. For example, if an object moves twice as far from the camera, its apparent size should halve (perspective projection). If you track two points on a rigid object, the 3D distance between them should stay constant across frames. A “residual” is the difference between what these geometric laws predict and what you actually observe in the video. Large residuals mean the video is violating 3D geometry — it’s not a plausible projection of any consistent 3D scene. PDI computes residuals for scale-depth coupling, motion smoothness, and structural rigidity, then aggregates them into a single diagnostic score.

  • Monocular Reconstruction: You can estimate 3D structure from a single 2D image using learned depth predictors. These models (like Depth Anything or MiDaS) output a depth map: for each pixel, how far is that point from the camera? Given depth and 2D pixel coordinates, you can “unproject” back to 3D world coordinates using the camera’s intrinsic parameters (focal length, principal point). This isn’t perfect — monocular depth is ambiguous and scale-uncertain — but it’s good enough to detect gross geometric violations. PDI uses monocular reconstruction as a probe: if the video is geometrically coherent, the reconstructed 3D should obey physical laws; if not, the residuals will spike.

  • Object-Centric Evaluation: Instead of analyzing the entire frame as a blob, PDI segments the video into individual objects (people, cars, buildings) and tracks each one separately. This matters because geometric failures often manifest per-object: a person’s limbs might stretch unnaturally, or a car might shrink as it approaches. By isolating objects, PDI can pinpoint which entities violate geometry and how. It also makes the evaluation more interpretable — you can say “this model struggles with rigid structures” rather than “this video has high error.”

Framework Shift

Before (mainstream approach):        After (this paper):

Video Generator                      Video Generator
    |                                    |
    v                                    v
Generated Video                      Generated Video
    |                                    |
    v                                    v
[Perceptual Metrics]                 [Segmentation + Tracking]
 - FVD, IS, CLIP-score                   |
 - Learned discriminators                v
    |                                [Monocular 3D Reconstruction]
    v                                    |
"Looks realistic"                        v
(no geometric diagnosis)             [Projective Geometry Residuals]
                                         |
                                         v
                                     "Obeys 3D laws"
                                     (quantitative diagnosis)

One sentence: From judging videos by perceptual similarity to real data, to auditing whether they respect the mathematical constraints of 3D-to-2D projection.

Expert Assessment

Problem choice: This is a real gap. The field has been treating video generation as a perceptual problem (make it look good) while claiming these models learn physics. PDI asks the uncomfortable question: do they actually? The timing is right — video models are being deployed as simulators and world models, so geometric coherence matters beyond aesthetics.

Method maturity: The approach is pragmatic rather than elegant. It stitches together existing tools (SAM 2, CoTracker3, Depth Anything) into a diagnostic pipeline. The residuals are straightforward geometric checks, not novel theory. This is a strength — the method is immediately usable and interpretable. The weakness is that it inherits the errors of its components: if the depth estimator is wrong, the residuals are noisy. The paper doesn’t deeply analyze this error propagation, which would strengthen the claims.

Experimental integrity: The baselines are fair — they test state-of-the-art video generators (Sora-like models, diffusion-based methods) on a custom dataset (PDI-Dataset) designed to stress geometric constraints. The results show PDI catches failures that perceptual metrics miss, which is the core claim. However, the paper doesn’t validate PDI against ground-truth 3D data (e.g., synthetic videos with known geometry), which would establish its accuracy. The correlation with human judgment is mentioned but not quantified. These are fixable gaps, not fatal flaws.

Writing quality: The paper is clear in motivation and method, but the results section is dense with tables and lacks visual examples of failure modes. Showing side-by-side comparisons (high FVD + low PDI vs. low FVD + high PDI) would make the diagnostic value visceral. The related work section undersells the novelty — it reads like a laundry list rather than positioning PDI as a paradigm shift from perceptual to geometric evaluation.

Verdict: weak accept — Addresses a real problem with a practical solution, but needs stronger validation and clearer presentation of diagnostic insights.

Takeaways

For practitioners building video models: PDI gives you a debugging tool. If your model scores well on FVD but poorly on PDI, you’re generating perceptually plausible but geometrically incoherent videos. This suggests your model is memorizing texture patterns without learning 3D structure. You can use PDI to diagnose specific failure modes (scale-depth coupling, motion jitter, structural warping) and target them in training.

For researchers evaluating world models: PDI demonstrates that perceptual metrics are insufficient for physical reasoning tasks. If you’re using video generation as a testbed for world models (e.g., for robotics planning), you need geometric evaluation. The three-residual framework (scale-depth, motion, rigidity) is a template you can adapt to other domains (e.g., auditing 3D scene generation, evaluating neural radiance fields).

For dataset builders: PDI-Dataset shows how to design stress tests for geometric coherence. The scenarios (camera motion, object interaction, occlusion) are chosen to expose specific failure modes. This is more diagnostic than random sampling from a large dataset. The lesson: evaluation datasets should be adversarial, not representative.

Transferable technique: The “lift 2D to 3D, compute residuals” pattern works beyond video. You can apply it to any generative model that claims to produce 3D-consistent outputs from 2D observations (e.g., image-to-3D, novel view synthesis). The key is identifying the geometric invariants your domain should respect, then checking whether the model violates them.

论文: 2605.15185 作者: Jiaxin Wu, Yihao Pi, Yinling Zhang, Yuheng Li, Xueyan Zou 分类: cs.CV, cs.AI

缺口

视频生成模型越来越多地被定位为”世界模型”——隐式学习物理规律和3D结构的系统。

但现有评估方法依赖感知指标(FVD、IS)或人工判断,无法直接衡量几何合理性。

一个视频可以看起来清晰逼真,同时违反基本的投影几何:物体靠近相机时反而缩小,刚性结构在运动中弯曲,或深度关系任意翻转。

此前的工作要么使用学习到的判别器(继承数据集偏差),要么依赖人工检查(无法规模化)。

没有人构建过一个量化管道,直接审计生成视频是否遵守3D世界投影到2D帧的几何约束。

问题:视频模型声称学习"世界模型"
   |
   v
缺口:没有量化测量几何一致性的方法
   |
   v
假设:投影几何违规可以从2D观测中检测
      (分割 + 跟踪)
   |
   v
方法:将2D轨迹提升到3D,计算几何残差
   |
   v
证据:PDI捕获感知指标看不见的失败
   |
   v
结论:为物理基础视频生成提供诊断信号

增量

一句话: 这篇论文之前,我们通过感知相似度评估视频质量;之后,我们可以量化视频是否遵守3D到2D投影的几何规则。

核心机制

PDI-Bench分三个阶段运作。

首先,它使用现成工具从生成视频中提取以物体为中心的观测:SAM 2或MegaSaM做分割,CoTracker3做跨帧密集点跟踪。

这给你每个物体的2D轨迹。

其次,它使用单目深度估计(如Depth Anything)将这些2D轨迹提升到3D世界坐标。

现在每个跟踪点在每一帧都有估计的3D位置。

第三,它计算三类几何残差。

尺度-深度对齐检查物体是否随深度变化一致地缩小/增长(透视投影定律)。

3D运动一致性验证物体在3D空间中的速度是否平滑,而非瞬移或抖动。

3D结构刚性测量刚性物体(如建筑或家具)是否在帧间保持固定的点间距离,还是扭曲变形。

输入视频
    |
    v
[分割]  -->  每帧的物体掩码
    |
    v
[点跟踪]  -->  2D轨迹 (x,y) 随时间变化
    |
    v
[单目深度]  -->  每个点的3D坐标 (X,Y,Z)
    |
    v
[几何残差]
    |
    +---> 尺度-深度对齐误差
    +---> 3D运动一致性误差
    +---> 3D结构刚性误差
    |
    v
PDI分数(越低越一致)

核喻: 把PDI-Bench想象成审计公司账目的法务会计。

视频生成器是声称其财务(3D世界)健全的公司。

PDI不信任表面呈现(感知质量)。

相反,它从公开声明(2D帧)重建底层账本(3D坐标),然后交叉检查三类不一致:(1)报告的资产规模(物体尺度)是否与其声明的距离(深度)匹配?(2)现金流(物体运动)是否遵循平滑轨迹,还是有无法解释的跳跃?(3)固定资产(刚性结构)是否保持其账面价值(点间距离),还是在逐帧悄悄重估?如果数字对不上,账本就是假的——视频不具备几何一致性。

关键概念

  • 投影几何残差: 在真实的3D世界被相机捕获时,某些数学关系必须成立。

例如,如果物体距相机的距离翻倍,其表观尺寸应减半(透视投影)。

如果你跟踪刚性物体上的两个点,它们之间的3D距离应在帧间保持恒定。

“残差”是这些几何定律预测的值与你在视频中实际观察到的值之间的差异。

大残差意味着视频违反了3D几何——它不是任何一致3D场景的合理投影。

PDI计算尺度-深度耦合、运动平滑性和结构刚性的残差,然后聚合成单一诊断分数。

  • 单目重建: 你可以使用学习到的深度预测器从单张2D图像估计3D结构。

这些模型(如Depth Anything或MiDaS)输出深度图:对每个像素,该点距相机多远?给定深度和2D像素坐标,你可以使用相机的内参(焦距、主点)“反投影”回3D世界坐标。

这不完美——单目深度存在歧义和尺度不确定性——但足以检测严重的几何违规。

PDI使用单目重建作为探针:如果视频几何一致,重建的3D应遵守物理定律;否则,残差会飙升。

  • 以物体为中心的评估: PDI不是将整个帧作为一团分析,而是将视频分割成单个物体(人、车、建筑)并分别跟踪每个物体。

这很重要,因为几何失败通常按物体表现:人的肢体可能不自然地拉伸,或汽车在接近时缩小。

通过隔离物体,PDI可以精确定位哪些实体违反几何以及如何违反。

它还使评估更可解释——你可以说”这个模型在刚性结构上挣扎”而不是”这个视频有高误差”。

框架转变

之前(主流方法):                之后(本文方法):

视频生成器                        视频生成器
    |                                |
    v                                v
生成视频                          生成视频
    |                                |
    v                                v
[感知指标]                        [分割 + 跟踪]
 - FVD, IS, CLIP分数                 |
 - 学习到的判别器                    v
    |                            [单目3D重建]
    v                                |
"看起来逼真"                         v
(无几何诊断)                   [投影几何残差]
                                     |
                                     v
                                 "遵守3D定律"
                                 (量化诊断)

一句话: 从通过与真实数据的感知相似度判断视频,到审计视频是否遵守3D到2D投影的数学约束。

专家评审

选题眼光: 这是真缺口。

该领域一直将视频生成视为感知问题(让它看起来好),同时声称这些模型学习物理。

PDI提出了令人不安的问题:它们真的学到了吗?时机恰当——视频模型正被部署为模拟器和世界模型,因此几何一致性不仅关乎美学。

方法成熟度: 方法务实而非优雅。

它将现有工具(SAM 2、CoTracker3、Depth Anything)拼接成诊断管道。

残差是直接的几何检查,不是新颖理论。

这是优势——方法立即可用且可解释。

弱点是它继承了组件的误差:如果深度估计器错了,残差就有噪声。

论文没有深入分析这种误差传播,这会加强论证。

实验诚意: 基线公平——他们在定制数据集(PDI-Dataset)上测试最先进的视频生成器(类Sora模型、基于扩散的方法),该数据集旨在压力测试几何约束。

结果显示PDI捕获了感知指标遗漏的失败,这是核心主张。

然而,论文没有针对真实3D数据(例如已知几何的合成视频)验证PDI,这将确立其准确性。

与人类判断的相关性被提及但未量化。

这些是可修复的缺口,不是致命缺陷。

写作功力: 论文在动机和方法上清晰,但结果部分充斥表格,缺乏失败模式的视觉示例。

展示并排比较(高FVD + 低PDI vs. 低FVD + 高PDI)会让诊断价值更直观。

相关工作部分低估了新颖性——读起来像清单而非将PDI定位为从感知到几何评估的范式转变。

判决: 弱接收 — 用实用方案解决真实问题,但需要更强的验证和更清晰的诊断洞察呈现。

要点总结

对于构建视频模型的实践者: PDI给你一个调试工具。

如果你的模型在FVD上得分高但在PDI上得分低,你在生成感知上合理但几何上不一致的视频。

这表明你的模型在记忆纹理模式而没有学习3D结构。

你可以使用PDI诊断特定失败模式(尺度-深度耦合、运动抖动、结构扭曲)并在训练中针对它们。

对于评估世界模型的研究者: PDI证明感知指标不足以应对物理推理任务。

如果你使用视频生成作为世界模型的测试平台(例如用于机器人规划),你需要几何评估。

三残差框架(尺度-深度、运动、刚性)是一个模板,你可以将其适配到其他领域(例如审计3D场景生成、评估神经辐射场)。

对于数据集构建者: PDI-Dataset展示了如何设计几何一致性的压力测试。

场景(相机运动、物体交互、遮挡)被选择来暴露特定失败模式。

这比从大数据集随机采样更具诊断性。

教训:评估数据集应该是对抗性的,而非代表性的。

可迁移技术: “将2D提升到3D,计算残差”的模式超越视频。

你可以将其应用于任何声称从2D观测产生3D一致输出的生成模型(例如图像到3D、新视角合成)。

关键是识别你的领域应遵守的几何不变量,然后检查模型是否违反它们。