pablo-rerun pablovela5620 commited on
Commit
0f972fb
·
0 Parent(s):

Duplicate from pablovela5620/arkitscenes-rrd

Browse files

Co-authored-by: pablo vela <pablovela5620@users.noreply.huggingface.co>

This view is limited to 50 files because it contains too many changes.   See raw diff
.gitattributes ADDED
The diff for this file is too large to render. See raw diff
 
README.md ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: arkitscenes
4
+ license_link: https://github.com/apple/ARKitScenes/blob/main/LICENSE
5
+ pretty_name: ARKitScenes RRD
6
+ tags:
7
+ - rerun
8
+ - rrd
9
+ - 3d
10
+ - depth
11
+ - slam
12
+ - indoor-scenes
13
+ - multimodal
14
+ ---
15
+
16
+ # ARKitScenes → Rerun (.rrd)
17
+
18
+ 5,015 [ARKitScenes](https://github.com/apple/ARKitScenes) indoor iPhone/iPad captures,
19
+ converted into **layered [Rerun](https://rerun.io) recordings** — including the data that
20
+ exists only inside the dataset's `.mov` containers and appears in no published asset:
21
+
22
+ - **60 Hz camera poses** (ARKit `visionTransform`, 6× denser than the published 10 Hz trajectory) —
23
+ validated against the published trajectory per sequence and used when a rigid fit agrees within
24
+ 3° / 10 cm (`pose_source = mebx_stream_4_vision_transform`), otherwise the published 10 Hz
25
+ trajectory is slerp-resampled onto the frame grid (`pose_source = lowres_traj_slerp`)
26
+ - **100 Hz raw IMU** (accelerometer, gyroscope, fused attitude) — published nowhere else
27
+ - **Per-frame 8-coefficient lens distortion** and **wide↔ultrawide stereo extrinsics** (~1.2 cm baseline)
28
+ - **Per-camera clock recovery** (the two cameras' PTS origins differ by up to ~100 ms)
29
+ - Orientation **measured from gravity** (the metadata `sky_direction` label is wrong for ~60% of
30
+ sampled sequences; the label is kept as a property)
31
+ - Full-rate **60 fps video as AV1 `VideoStream`** (`av1_nvenc -preset p7 -rc vbr -cq 30`,
32
+ SSIM ≈ 0.984 vs source), ARKit LiDAR depth + laser GT depth + confidence, annotated room mesh
33
+ and oriented 3D boxes
34
+
35
+ ## Structure
36
+
37
+ Layer-first: one directory per layer, one file per sequence. This makes bulk catalog
38
+ registration a single `register_prefix` call per layer, and lets any layer be fetched,
39
+ regenerated, or re-registered without touching the rest.
40
+
41
+ ```
42
+ base/<video_id>.rrd # recording properties (queryable columns) + embedded blueprint
43
+ calibration/<video_id>.rrd # 60 Hz world_T_rig, pinholes, lens distortion, stereo extrinsics
44
+ video_wide/<video_id>.rrd # 1920×1440 @ 60 fps AV1
45
+ video_ultrawide/<video_id>.rrd
46
+ depth/<video_id>.rrd # ARKit LiDAR depth + laser GT depth + confidence
47
+ imu/<video_id>.rrd # 100 Hz accel / gyro / attitude
48
+ gt/<video_id>.rrd # annotated mesh + oriented 3D boxes
49
+ blueprints/ # dataset-level viewer layouts (portrait default, landscape)
50
+ ```
51
+
52
+ The seven layers share one `recording_id` per sequence: a Rerun catalog stacks them into a single
53
+ recording. GT boxes live at stable slot paths (`/world/gt/boxes/box_00` …) shared across all
54
+ sequences — Apple's per-object annotation uid rides along as a `uid` component on each box — so
55
+ the dataset's merged schema stays narrow no matter how many sequences are registered.
56
+ Recording properties (`video_id`, `visit_id`, `split`, `pose_source`, pose-fit residuals, clock
57
+ offsets and dispersion, orientation source and quarter-turns, encoder provenance, …) surface as
58
+ queryable segment-table columns.
59
+
60
+ ## Use
61
+
62
+ ```bash
63
+ # one full sequence (all seven layers)
64
+ hf download pablovela5620/arkitscenes-rrd --repo-type dataset --include "*/40753679.rrd" --local-dir .
65
+
66
+ # one layer for every sequence (e.g. all ground truth)
67
+ hf download pablovela5620/arkitscenes-rrd --repo-type dataset --include "gt/*" --local-dir .
68
+
69
+ # view a sequence (opens with its embedded blueprint)
70
+ rerun */40753679.rrd
71
+
72
+ # or serve a catalog and register everything (rerun >= 0.34)
73
+ rerun server --port 51234
74
+ # then one register_prefix per layer directory — see the conversion pipeline below
75
+ ```
76
+
77
+ Conversion pipeline (download → mebx decode → clock recovery → ingest → verify):
78
+ [`packages/arkitscenes-download`](https://github.com/pablovela5620/examples-monorepo) — runs
79
+ locally or fans out on Modal (this dataset was produced on Modal L4 workers; per-recording
80
+ encoder provenance is embedded).
81
+
82
+ ## License & attribution
83
+
84
+ The underlying data is Apple's ARKitScenes, redistributed **with modifications** (format
85
+ conversion to RRD) under the
86
+ [ARKitScenes license](https://github.com/apple/ARKitScenes/blob/main/LICENSE) — refer to the
87
+ license text for the exact terms of use. If you use ARKitScenes, cite:
88
+
89
+ ```bibtex
90
+ @inproceedings{baruch2021arkitscenes,
91
+ title={{ARK}itScenes - A Diverse Real-World Dataset For 3D Indoor Scene Understanding Using Mobile {RGB}-D Data},
92
+ author={Gilad Baruch and Zhuoyuan Chen and Afshin Dehghan and Tal Dimry and Yuri Feigin and Peter Fu and Thomas Gebauer and Brandon Joffe and Daniel Kurz and Arik Schwartz and Elad Shulman},
93
+ booktitle={NeurIPS Datasets and Benchmarks},
94
+ year={2021}
95
+ }
96
+ ```
97
+
98
+ Of the 5,047 upstream captures, 24 ship without mesh/annotation/trajectory and 8 failed the
99
+ pipeline's transcode-integrity gates; both sets are excluded.
base/40753679.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:16cdfaf9b3fb28dc2a7210073cded8ee19f864cfab88467ee8f04f602192699f
3
+ size 161946
base/40753686.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf593ba638ac8a2922767b8653b098cee97b8463f73d4ded5bc8c5a53cd36ad2
3
+ size 161927
base/40776203.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b486059f738eb8ef5cb39dfa01760bf129e98b6dc38689ff7d752c0c3501dd0a
3
+ size 161882
base/40776204.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:77f204cd393be2f1fec2c5e85e7c83b23af8c797da67631f3f5967d8e1f5cdac
3
+ size 161940
base/40777060.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3a78f88c96b0d10f1d0e6d6bdab993976a1f5299f903d6f57c8a02b8722e759
3
+ size 161887
base/40777063.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1690851a00fe4c2b096f481ca21f5b7f88a9ce2bc0856dd41dc465936bce7ba3
3
+ size 161970
base/40777065.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67d156ffd21f9fcb893add2bb81932cb7eefd2d2035ea636673f07bc184c1d6d
3
+ size 161955
base/40777069.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c6a1029a8196892b7f99ed965c765ef2570e5cc0be69ac422a9b9b652a457c6
3
+ size 161910
base/40777073.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ece4b57f07d48974d7c009b89af7d52a922d537638bb43a7174d5ef80524042e
3
+ size 161948
base/40777079.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4b3fb9d718bcfd1cd94705fdca1fe3a3dfdc528c89e5e274094943cd71e36f2
3
+ size 161924
base/40809740.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e53b8883c9cacad63e0cfcfaf0cb5f2638ec751bdf665910a955b09e6742216
3
+ size 162092
base/40809741.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8391577f212670bbfccbd3f152369bc52368c9b1f74f429092f6c3561d9d3d7
3
+ size 161903
base/40958733.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5e38068fad7898e5ef5fcc291354f3951b880333b6dde65f4c161918da75920
3
+ size 161837
base/40958737.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a607c961380539a833636eb9f33ece5a73b0ac0eddfcc4a5baff2fc785dbf236
3
+ size 162070
base/40958748.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5e86ec99351ba526a15b5344ad0ccd564ee88c379257c8ba78272b642b1e932
3
+ size 161963
base/40958749.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c762989ba81657cea6741f83fe72b4c804f3662c6163851bbd558dd8e187e99b
3
+ size 161897
base/40958754.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1be3723f3bf973e3004f7a33061267b1ecd03ceac3d61cb09cc814313121f50c
3
+ size 161896
base/40958756.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c48920df6c09c48a9583b805eec4ef934d763e809ed862e979879601c299258
3
+ size 161873
base/40958764.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4a6c481228995858f5cb93dfb9ecf2eb6a012bb6e6e0b82f484468f8ff06669
3
+ size 161895
base/40958767.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c840ced2113942a3dcd461a44726d42512b0afc56966d6b741a891771644dfb
3
+ size 161925
base/40966448.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b66b43540e19282d0c38007ab4cd52e64bccf749bc939ffaad6f21fdd50bd90f
3
+ size 161951
base/41007548.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6fd613d762991d8c20c7011035b7561cad599f58c0def3f11f639f331d227c05
3
+ size 161897
base/41007581.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ebb4e544ca4047365a87ed7848395f58e1d4544e3f4df292ecb6218a3dc3aa4
3
+ size 161921
base/41007582.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24e8fbf6776da55999def71cbe2c1c1cf5bbf8614779d6ede7fb3b664c16f31b
3
+ size 161940
base/41007589.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35fc146a5b2edb8c902bba725edb59ffa48afee8c3fde2887c4d97b940ef4623
3
+ size 161886
base/41007590.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae9f8dcb1c549ffcc2abbf2dd2fbf4baf0341765c3b825958aff2ca4a108ca22
3
+ size 161883
base/41007591.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5f70864a8ae1e56913a288d149563dfb0cb48c6e37d35c417f50cd140c493b6
3
+ size 161829
base/41007602.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4efd26faf38616aeefac6c9fa3842249aed1c295d31d9e6b663447d5dc08d0cd
3
+ size 161896
base/41007603.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af3c1bd6d9b9a19ae1873cfac1904245b5de84adf5f491ca15af9b3da103295a
3
+ size 161854
base/41007608.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3b478774cd2e32edf2fddca494df1e6831dce04b831da7b32947cde6173210b
3
+ size 162014
base/41007613.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b4293eec2c341f6fe1a02a198b9c8b9a735e48aec95734ba1426a8cec50c7ab9
3
+ size 161929
base/41045408.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73a08f2582c4868620ab36a4682d985256149e795395600b71798f200c680a75
3
+ size 161903
base/41048068.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:519e8ec76093ffca73d628692932215e8ce4da9b7fe7eed253a8e9dea960e7a6
3
+ size 161869
base/41048071.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:077e7a5eafbd9982ccba2a8fde747b458ca28589a4e6ad7395877757d3aabc18
3
+ size 161959
base/41048074.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:249797e9c852aac426af6a86748416bb74bf8594b9be1f01e07a0a94d890a3e1
3
+ size 161855
base/41048083.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a74d5adfb56b26eb136ef3481333569cb0fe0e7a8214603ede68362f531f01b
3
+ size 161937
base/41048085.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7f3de59650202b23926dc9caff43d0c04c3b1acb21e1f6a558c9819dc2b43ec
3
+ size 161885
base/41048093.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76cb44860b342aef6d2546b7324ebe1d90bf4e99cc423c597df6e419eafcacda
3
+ size 161894
base/41048095.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6491e3026369acf0c2c44fac33e77bdfad17bed2850102729891e7cbc7074ab
3
+ size 162002
base/41048097.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7097aee95065a5c37d64a851a0c876360f53ab2e31f226f44ac620f6b97d4ea4
3
+ size 161901
base/41048103.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a899071983a76a29e565ffc8696b30d586dcac3bbe1b577decf7c89a099ad7c5
3
+ size 161822
base/41048113.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4627e66687337aed7d9521a90290fb077fa7ffd8d8d11ee29251265859053fe9
3
+ size 161885
base/41048120.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d737bd01416ef404c2f1524455b1486b9287ee743e9b9d52168f778f641f6475
3
+ size 161919
base/41048124.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6cd49cb7d77e1c3e6f24ad04433376f1fa6be8761b73fb2c0ef267f00073eb4
3
+ size 162062
base/41048129.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4840b50b11403c8c9fcb97c18a2ac20861ee7b5f3e0c873754d1852c977ce33
3
+ size 161887
base/41048142.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a79170286bd5fd999ed786e20e3c412cd41ed2f8b76e7ba7a0794f1535ce1197
3
+ size 161912
base/41048143.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3bd5faa97690a1af532d8f04a32bcef90e382d011466443cce553c29b504d94
3
+ size 161951
base/41048147.rrd ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c935cf09e8701546b2cdf0e6124f9d5f19f755a0d3139d441b14ff566f6925c4
3
+ size 161918