Datasets:

Modalities:
Text
Video
ArXiv:
License:
Dataset Preview
Duplicate
The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
Job has been terminated due to a temporary spike in resource usage and may be restarted later.
Error code:   JobManagerCrashedError

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

text
string
frame_1766067991361901_000000000000
frame_1766067991393475_000000000001
frame_1766067991425669_000000000002
frame_1766067991461541_000000000003
frame_1766067991493571_000000000004
frame_1766067991525574_000000000005
frame_1766067991561502_000000000006
frame_1766067991593609_000000000007
frame_1766067991625562_000000000008
frame_1766067991661529_000000000009
frame_1766067991693537_000000000010
frame_1766067991725636_000000000011
frame_1766067991761633_000000000012
frame_1766067991793747_000000000013
frame_1766067991825666_000000000014
frame_1766067991861566_000000000015
frame_1766067991893586_000000000016
frame_1766067991925675_000000000017
frame_1766067991961568_000000000018
frame_1766067991993653_000000000019
frame_1766067992025710_000000000020
frame_1766067992061674_000000000021
frame_1766067992093660_000000000022
frame_1766067992125696_000000000023
frame_1766067992161677_000000000024
frame_1766067992193678_000000000025
frame_1766067992225580_000000000026
frame_1766067992261565_000000000027
frame_1766067992293669_000000000028
frame_1766067992325700_000000000029
frame_1766067992361686_000000000030
frame_1766067992393631_000000000031
frame_1766067992425708_000000000032
frame_1766067992461703_000000000033
frame_1766067992493575_000000000034
frame_1766067992525736_000000000035
frame_1766067992561530_000000000036
frame_1766067992593565_000000000037
frame_1766067992625553_000000000038
frame_1766067992661619_000000000039
frame_1766067992693632_000000000040
frame_1766067992725560_000000000041
frame_1766067992761566_000000000042
frame_1766067992793580_000000000043
frame_1766067992825575_000000000044
frame_1766067992861618_000000000045
frame_1766067992893599_000000000046
frame_1766067992925719_000000000047
frame_1766067992961700_000000000048
frame_1766067992993746_000000000049
frame_1766067993025691_000000000050
frame_1766067993061692_000000000051
frame_1766067993093592_000000000052
frame_1766067993125593_000000000053
frame_1766067993161566_000000000054
frame_1766067993193579_000000000055
frame_1766067993225577_000000000056
frame_1766067993261569_000000000057
frame_1766067993293575_000000000058
frame_1766067993325511_000000000059
frame_1766067993362000_000000000060
frame_1766067993393582_000000000061
frame_1766067993425554_000000000062
frame_1766067993461551_000000000063
frame_1766067993493543_000000000064
frame_1766067993526565_000000000065
frame_1766067993561529_000000000066
frame_1766067993593490_000000000067
frame_1766067993625509_000000000068
frame_1766067993661503_000000000069
frame_1766067993693508_000000000070
frame_1766067993725531_000000000071
frame_1766067993761434_000000000072
frame_1766067993794299_000000000073
frame_1766067993825522_000000000074
frame_1766067993861511_000000000075
frame_1766067993893521_000000000076
frame_1766067993925923_000000000077
frame_1766067993961603_000000000078
frame_1766067993993594_000000000079
frame_1766067994025844_000000000080
frame_1766067994061528_000000000081
frame_1766067994093592_000000000082
frame_1766067994125659_000000000083
frame_1766067994161598_000000000084
frame_1766067994193588_000000000085
frame_1766067994225625_000000000086
frame_1766067994261586_000000000087
frame_1766067994293837_000000000088
frame_1766067994325596_000000000089
frame_1766067994362021_000000000090
frame_1766067994393504_000000000091
frame_1766067994425582_000000000092
frame_1766067994461498_000000000093
frame_1766067994493592_000000000094
frame_1766067994525863_000000000095
frame_1766067994561644_000000000096
frame_1766067994593539_000000000097
frame_1766067994625652_000000000098
frame_1766067994661577_000000000099
End of preview.

Deform360: A Massive Multi-view Visuotactile Dataset for Deformable World Models

Project Page | Paper | GitHub Repository

Deform360 is a massive multi-view visuotactile dataset for deformable-object research, featuring 198 daily-life objects, 1,980 interaction sequences, and over 215 hours of observations from 41 surround-view cameras and bimanual tactile grippers to capture both global motion and contact-induced local deformations.

Installation

To load and interact with the dataset, install the helper library:

git clone https://github.com/lhy0807/deform360.git
cd deform360
pip install -e ".[all]"

Sample Usage

Loading Aligned Multi-View Data

The MultiViewDataset class returns synchronized RGB frames, calibration, and the common timestamp. It is compatible with the Dataset protocol but does not require PyTorch.

from deform360 import MultiViewDataset

episode = "/path/to/deform360_data/processed/001-rope/episode_0000"
with MultiViewDataset(episode) as dataset:
    sample = dataset[0]

sample["images"]         # list[(H,W,3) uint8 RGB]
sample["intrinsics"]     # list[(3,3)]
sample["extrinsics"]     # list[(4,4) camera-to-world]
sample["cameras"]        # camera names
sample["timestamp_us"]   # shared Unix timestamp in microseconds

Loading Aligned Tactile Data

Load all synchronized tactile grids at the same frame index with:

from deform360 import TactileDataset

episode = "/path/to/deform360_data/processed/001-rope/episode_0000"
with TactileDataset(episode) as tactile:
    frame = tactile[0]        # sensor name -> (16,32) float32

Citation

If you find Deform360 useful, please cite:

@inproceedings{li2026deform360,
  title     = {Deform360: A Massive Multi-view Visuotactile Dataset for Deformable World Models},
  author    = {Li, Hongyu and Fu, Wanjia and Cong, Xiaoyan and Li, Zekun and Huang, Binghao and Jiang, Hanxiao and He, Xintong and Liang, Yiqing and Fu, Rao and Lu, Tao and Sridhar, Srinath and Smith, Kevin A. and Konidaris, George and Li, Yunzhu},
  booktitle = {European Conference on Computer Vision (ECCV)},
  year      = {2026}
}
Downloads last month
10,732

Paper for brownu/deform360