Paper: 2607.05390 Authors: Hongyu Li, Wanjia Fu, Xiaoyan Cong, Zekun Li, Binghao Huang, Hanxiao Jiang, Xintong He, Yiqing Liang, Rao Fu, Tao Lu Categories: cs.RO, cs.CV
The Gap
Here’s the situation: robots are getting pretty good at manipulating rigid objects — pick up the mug, place the mug, done. But the moment you hand a robot a towel or a piece of bread, things fall apart. Deformable objects have near-infinite internal degrees of freedom. A cloth can fold, crumple, stretch, and drape in ways that are extremely hard to predict.
Two camps have emerged to tackle this. 2D video prediction models (think diffusion-based video generators) learn dynamics in pixel space — they’re scalable and capture rich appearance, but they’re fundamentally “flat”: they don’t understand 3D structure or contact physics. 3D particle-based models (like GNNs or point-cloud dynamics simulators) work in explicit 3D geometry — they’re more physically grounded, but they struggle with scalability and require expensive 3D annotations. The problem? Nobody has had a big enough, diverse enough real-world dataset to actually compare these two paradigms on equal footing. Existing datasets are either small-scale, synthetic, rigid-only, or lack tactile information. You can’t settle a debate when both sides are fighting with toy data.
Problem:
Deformable objects are hard to predict (high-dim state, complex contact)
|
v
Two competing paradigms exist:
[2D video models] <--scalable, appearance-rich, no 3D priors
[3D particle models] <--physics-grounded, hard to scale, need 3D annotations
|
v
Gap: No large-scale real-world dataset to compare them fairly
| (existing data: small, synthetic, rigid, no tactile)
v
Deform360: 198 objects, 1980 sequences, 215+ hrs
41 cameras + bimanual tactile grippers
markerless 3D tracking pipeline
|
v
Systematic comparison of 2D vs 3D models
+ robot planning demo on deformable objects
|
v
Conclusion: 2D models scale better but miss structure;
3D models capture geometry but struggle with diversity.
Trade-off between structural priors and scalability.
The Increment
One sentence: Before this paper, we had opinions about 2D vs 3D deformable world models; after this paper, we have data — 215 hours of it, from 198 real objects, with synchronized vision and touch.
Core Mechanism
Deform360 is primarily a dataset paper, but it’s not “just” a dataset. The real engineering challenge is the pipeline that produces the data. Let me walk through it.
Data capture hardware: A rig with 41 surround-view cameras captures the deformable object from every angle during manipulation. The robot uses bimanual tactile grippers (one in each hand), so you get both the global motion (cameras) and local contact information (tactile sensors) simultaneously. The 198 objects span daily-life categories — towels, bags, food items, clothing — chosen to cover a range of material stiffness, elasticity, and surface properties.
Markerless visuotactile 3D tracking: This is the technical contribution within the dataset pipeline. Previous visuotactile approaches often relied on fiducial markers (stickers or patterns on the object) to track deformation. Deform360’s pipeline extracts dense 3D geometry and motion without markers, using multi-view reconstruction fused with tactile signals. This means you can track deformation on arbitrary objects without prep work — crucial for scaling to 198 diverse objects.
Benchmark evaluation: With the dataset in hand, the authors run a systematic comparison. They take representative 2D video prediction models and 3D particle-based models, train them on the same data, and evaluate prediction quality across multiple dimensions: visual fidelity, geometric accuracy, contact prediction, and generalization to unseen objects.
Data Capture
+-- 41 surround-view cameras --> multi-view RGB frames
+-- bimanual tactile grippers --> contact force + local geometry
|
v
Markerless Tracking Pipeline
multi-view RGB --> 3D reconstruction (dense geometry)
|
tactile signals -------+--> fused visuotactile 3D tracking
|
v
per-frame dense point clouds + motion fields
|
v
Deform360 Dataset
198 objects, 1980 sequences, 215+ hrs
multi-view video + tactile + 3D geometry
|
v
Benchmark Evaluation
+-- 2D video models (train + evaluate)
+-- 3D particle models (train + evaluate)
|
v
Metrics: visual quality, geometric accuracy,
contact prediction, generalization
|
v
Robot Planning Demo: deformable manipulation tasks
Now, a structural metaphor to make this stick. Think of Deform360 as a cooking school’s masterclass recording system.
- The 41 cameras are like having 41 students standing around the chef, each filming from a different angle — you never miss what the dough looks like from behind.
- The tactile grippers are the chef’s own hands — they feel how the dough resists, where it sticks, how much pressure is needed. Video alone can’t tell you that.
- The markerless tracking pipeline is the difference between asking the chef to put toothpicks in the dough so you can track it (markers), versus just watching the dough move naturally (markerless). The former limits what you can study; the latter lets you film anything.
- The benchmark comparison is like having two cooking schools — one teaches by showing videos (2D models), the other by building physical models of the food (3D models) — and finally giving them the same masterclass footage to learn from, then testing who produces better dishes.
- The robot planning demo is the graduation exam: can the students actually cook something new?
Without the analogy: it’s a dataset. With the analogy: it’s the masterclass recording system that lets you finally decide whether learning by watching videos beats learning by building physical replicas.
Key Concepts
-
World Model for Deformable Objects: A world model is a learned simulator — you show it the current state of the world, give it an action, and it predicts what happens next. For rigid objects, this is already hard. For deformable objects, it’s nightmarish because the “state” isn’t just position and orientation — it’s the entire 3D shape of a towel that just got crumpled. Imagine trying to predict the exact shape of a piece of paper after someone crumples it, without actually seeing the crumpling. That’s the world model problem for deformables.
-
Visuotactile Fusion: Vision tells you what the object looks like from the outside. Touch tells you what’s happening at the contact point — force, pressure, slip, local deformation. Neither alone is sufficient. A camera might see a bag being squeezed, but only the tactile sensor knows how much force is being applied and whether the bag is about to slip. Fusion means combining both signals into a unified representation. The analogy: vision is like reading about swimming, touch is like being in the water — you need both to learn.
-
Structural Priors vs. Scalability Trade-off: A structural prior is a built-in assumption that helps a model learn faster but limits what it can represent. 3D particle models have strong structural priors (they “know” objects are made of particles in 3D space), which helps with geometric accuracy but makes them brittle when the real world doesn’t match the assumption. 2D video models have almost no structural priors (they just predict pixels), which makes them flexible and scalable but physically ungrounded. The paper’s key insight is that neither dominates — it’s a genuine trade-off, and the sweet spot probably lies somewhere in between.
Framework Shift
Before (mainstream approach): After (this paper):
[Small / synthetic dataset] [Large-scale real-world dataset]
| |
v v
Study one model type Systematic comparison of
in isolation both paradigms on equal footing
| |
v v
Claim: "my approach works" Finding: trade-off is real,
(on limited benchmarks) neither dominates
| |
v v
No tactile, no multi-view, 41 cameras + tactile +
no dense 3D geometry dense 3D tracking
From isolated claims on toy data to systematic comparison on large-scale real data, the core shift is turning a tribal debate into a data-driven conversation.
Expert Assessment
Problem choice: This is a genuine gap. The deformable manipulation community has been hand-waving about 2D vs 3D for years, and the lack of a large-scale benchmark is a real bottleneck. The field’s trajectory clearly points toward needing exactly this kind of infrastructure. That said, this is fundamentally a dataset paper — the intellectual novelty is more in engineering and curation than in algorithmic insight.
Method maturity: The markerless tracking pipeline is solid engineering work, though the paper would benefit from more ablation on its accuracy. The benchmark evaluation is fair in scope but feels somewhat preliminary — the models compared are representatives, not exhaustive. There’s a risk that the “key insights” about trade-offs are partly a function of which specific models happened to be selected. Simpler approaches (e.g., learning a latent 3D representation from 2D video) might bridge the gap but aren’t explored here.
Experimental integrity: The scale is impressive (198 objects, 1980 sequences), but I’d want to see more on inter-annotator consistency and tracking failure modes. How often does the markerless pipeline fail? What’s the noise level in the extracted 3D geometry? The robot planning demo is described as “preliminary” — fair enough, but it’s thin evidence for the “real-world applicability” claim.
Writing quality: The abstract is clear and well-structured. However, the paper’s treatment of the tracking pipeline could use a dedicated comparison with marker-based baselines to establish credibility. The related work section likely glosses over some relevant visuotactile datasets (GelSight family, for instance). A rewrite of the limitations section — being more explicit about failure modes — would elevate trust.
Verdict: weak accept — The dataset fills a real need and the systematic comparison is valuable, but the technical novelty within the pipeline is incremental and the analysis, while insightful, feels like a first pass rather than a definitive study.
Takeaways
-
If you’re building deformable world models, you now have a real benchmark. Stop training on synthetic data or small lab setups. Deform360 gives you 198 real objects with ground-truth 3D geometry — use it.
-
The markerless tracking pipeline is transferable. If you need dense 3D tracking for any multi-view setup without fiducial markers, this pipeline’s approach (multi-view reconstruction + tactile fusion) is a starting point worth borrowing.
-
The 2D vs 3D trade-off framing is useful for your own research. Next time someone asks “why not just use a video model?” or “why not just use particles?”, you can point them to Deform360’s data: neither wins outright. The answer is probably hybrid — and now we have the data to explore that.
-
Multi-view + tactile is the gold standard for deformable manipulation data. Cameras alone miss contact; tactile alone misses global shape. If you’re designing a data collection system, follow this hardware template.
论文: 2607.05390 作者: Hongyu Li, Wanjia Fu, Xiaoyan Cong, Zekun Li, Binghao Huang, Hanxiao Jiang, Xintong He, Yiqing Liang, Rao Fu, Tao Lu 分类: cs.RO, cs.CV
缺口
目前的情况是:机器人操作刚性物体已经做得不错——拿起杯子,放下杯子,完事。 但一碰到毛巾或面包片,就全乱了。 可变形物体拥有近乎无穷的内部自由度。 一条毛巾可以折叠、揉皱、拉伸、垂落,其变形方式极难预测。
目前有两条路线在攻克这个问题。 2D视频预测模型(类似扩散式视频生成器)在像素空间学习动力学——可扩展、外观信息丰富,但本质上是”扁平”的:不理解3D结构或接触物理。 3D粒子模型(如图神经网络或点云动力学模拟器)在显式3D几何空间工作——物理基础更扎实,但难以扩展,且需要昂贵的3D标注。 问题在于:没人有一个足够大、足够多样的真实世界数据集来公平地比较这两种范式。 现有数据集要么规模小、要么是合成的、要么只涵盖刚性物体、要么缺乏触觉信息。 用玩具数据是解决不了争论的。
问题:
可变形物体预测困难(高维状态,复杂接触)
|
v
两种竞争范式:
[2D视频模型] <--可扩展,外观丰富,无3D先验
[3D粒子模型] <--物理基础扎实,难以扩展,需3D标注
|
v
缺口:缺乏大规模真实世界数据集进行公平比较
| (现有数据:小规模、合成、刚性、无触觉)
v
Deform360:198个物体,1980个序列,215+小时
41个相机 + 双臂触觉夹爪
无标记3D跟踪流水线
|
v
系统性对比2D与3D模型
+ 可变形物体机器人规划演示
|
v
结论:2D模型可扩展但缺失结构;
3D模型捕捉几何但难以扩展。
结构先验与可扩展性之间存在权衡。
增量
一句话: 在这篇论文之前,人们对2D与3D可变形世界模型只有观点;在这篇论文之后,我们有了数据——215小时,来自198个真实物体,视觉与触觉同步。
核心机制
Deform360本质上是一篇数据集论文,但它不只是”做个数据集”那么简单。 真正的工程挑战在于产生数据的流水线。 让我逐步拆解。
数据采集硬件:一套配备41个环绕视角相机的装置,在操作过程中从每个角度捕捉可变形物体。 机器人使用双臂触觉夹爪(左右手各一个),因此同时获取全局运动(相机)和局部接触信息(触觉传感器)。 198个物体涵盖日用品类别——毛巾、袋子、食品、衣物——覆盖不同刚度、弹性和表面特性。
无标记视触觉3D跟踪:这是数据集流水线内部的技术贡献。 此前的视触觉方法通常依赖标记物(物体上的贴纸或图案)来跟踪变形。 Deform360的流水线在没有标记的情况下提取稠密3D几何和运动,使用多视角重建融合触觉信号。 这意味着可以在任意物体上跟踪变形而无需预处理——这对扩展到198个多样物体至关重要。
基准评估:有了数据集,作者进行了系统性比较。 他们选取有代表性的2D视频预测模型和3D粒子模型,在相同数据上训练,从多个维度评估预测质量:视觉保真度、几何精度、接触预测、以及对未见物体的泛化能力。
数据采集
+-- 41个环绕视角相机 --> 多视角RGB帧
+-- 双臂触觉夹爪 --> 接触力 + 局部几何
|
v
无标记跟踪流水线
多视角RGB --> 3D重建(稠密几何)
|
触觉信号 --------------+--> 融合视触觉3D跟踪
|
v
逐帧稠密点云 + 运动场
|
v
Deform360数据集
198个物体,1980个序列,215+小时
多视角视频 + 触觉 + 3D几何
|
v
基准评估
+-- 2D视频模型(训练 + 评估)
+-- 3D粒子模型(训练 + 评估)
|
v
指标:视觉质量、几何精度、接触预测、泛化能力
|
v
机器人规划演示:可变形物体操作任务
现在用一个结构比喻来让它更容易理解。 把Deform360想象成一个烹饪大师课的录像系统。
- 41个相机就像41个学生围着厨师,每人从不同角度录像——你永远不会错过面团背面的样子。
- 触觉夹爪就像厨师自己的双手——它们能感受到面团的抵抗力、哪里粘手、需要多大力气。光看视频是看不出来的。
- 无标记跟踪流水线的区别在于:你是在面团里插牙签来跟踪它(有标记),还是自然地观察面团的运动(无标记)。 前者限制了你能研究的内容;后者让你能拍摄任何东西。
- 基准评估就像有两个烹饪学校——一个通过看视频教学(2D模型),另一个通过制作食物的物理模型(3D模型)——终于给他们同样的大师课录像来学习,然后测试谁做出更好的菜。
- 机器人规划演示就是毕业考试:学生们真的能做一道新菜吗?
没有比喻:这是一个数据集。 有了比喻:这是那个让你终于能判定”看视频学”和”造模型学”哪个更好的大师课录像系统。
关键概念
-
可变形物体的世界模型:世界模型是一个学习到的模拟器——你给它看世界的当前状态,给它一个动作,它预测接下来会发生什么。 对刚性物体来说,这已经很难了。 对可变形物体来说,简直是噩梦,因为”状态”不只是位置和朝向——它是一条毛巾被揉皱后的整个3D形状。 想象一下,不看揉的过程,只看结果,就要预测一张纸被揉成什么形状。 这就是可变形物体的世界模型问题。
-
视触觉融合:视觉告诉你物体外部看起来是什么样。 触觉告诉你接触点发生了什么——力、压力、滑移、局部变形。 两者单独都不够用。 相机可能看到一个袋子被挤压了,但只有触觉传感器知道施加了多大力、袋子是否要滑脱。 融合意味着把两种信号整合成统一表征。 类比:视觉就像读关于游泳的书,触觉就像真的在水里——你需要两者才能学会。
-
结构先验与可扩展性的权衡:结构先验是一种内置假设,帮助模型更快学习,但也限制了它能表达的内容。 3D粒子模型有强结构先验(它们”知道”物体由3D空间中的粒子组成),这有助于几何精度,但当现实世界不符合假设时就变得脆弱。 2D视频模型几乎没有结构先验(它们只是预测像素),这使其灵活且可扩展,但缺乏物理基础。 论文的核心发现是:没有哪一方能完全胜出——这是一个真实的权衡,最优解可能在两者之间。
框架转变
之前(主流方法): 之后(本文方法):
[小规模/合成数据集] [大规模真实世界数据集]
| |
v v
单独研究一种模型类型 系统性对比两种范式
孤立评估 在公平条件下评估
| |
v v
声称:"我的方法有效" 发现:权衡真实存在,
(在有限基准上) 任何一方都无法完全胜出
| |
v v
无触觉,无多视角, 41个相机 + 触觉 +
无稠密3D几何 稠密3D跟踪
从在玩具数据上的孤立声明到在大规模真实数据上的系统性比较,核心转变是把部落之争变成了数据驱动的对话。
专家评审
选题眼光:这是一个真实的缺口。 可变形操作社区多年来一直在2D与3D之间打嘴仗,缺乏大规模基准确实是真正的瓶颈。 该领域的发展轨迹显然指向需要这样的基础设施。 但话说回来,这本质上是一篇数据集论文——智力新颖性更多在于工程和数据整理,而非算法洞见。
方法成熟度:无标记跟踪流水线是扎实的工程工作,但论文如果能提供更多关于其精度的消融实验会更好。 基准评估在范围上是公平的,但感觉有些初步——比较的模型是代表性的,但不是穷尽的。 有一种风险:关于权衡的”关键发现”部分取决于恰好选了哪些模型。 更简单的方法(比如从2D视频学习隐式3D表征)可能弥合差距,但这里没有探索。
实验诚意:规模令人印象深刻(198个物体,1980个序列),但我想看到更多关于标注一致性和跟踪失败模式的内容。 无标记流水线多久失败一次? 提取的3D几何的噪声水平如何? 机器人规划演示被描述为”初步的”——可以理解,但作为”真实世界适用性”的证据,还是太薄了。
写作功力:摘要清晰、结构良好。 但论文对跟踪流水线的处理可以加一个与有标记基线的专门比较,以建立可信度。 相关工作部分可能忽略了某些相关的视触觉数据集(如GelSight系列)。 如果重写局限性部分——更明确地说明失败模式——会提升论文的整体可信度。
判决:弱接收——数据集填补了真实需求,系统性比较也很有价值,但流水线内部的技术新颖性是增量式的,分析虽然有洞察力,但感觉是第一轮而非决定性的研究。
要点总结
-
**如果你在构建可变形世界模型,现在有了真正的基准。**别再用合成数据或小规模实验室数据训练了。Deform360给你198个带有真值3D几何的真实物体——用起来。
-
**无标记跟踪流水线是可迁移的。**如果你需要在任何多视角设置中进行稠密3D跟踪而不用标记物,这个流水线的方法(多视角重建+触觉融合)是一个值得借鉴的起点。
-
**2D与3D权衡的框架对你的研究有用。**下次有人问”为什么不用视频模型?“或”为什么不用粒子模型?“,你可以指向Deform360的数据:没有任何一方能完全胜出。答案可能是混合的——现在我们有了数据来探索这一点。
-
**多视角+触觉是可变形操作数据的黄金标准。**仅靠相机会错过接触信息;仅靠触觉会错过全局形状。 如果你在设计数据采集系统,请参考这个硬件模板。