xjxu21 commited on
Commit
3876486
·
verified ·
1 Parent(s): 7c852bd

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +79 -0
README.md ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: worldrover-research
4
+ pretty_name: WorldRover (lite)
5
+ task_categories:
6
+ - depth-estimation
7
+ - robotics
8
+ tags:
9
+ - video
10
+ - panoramic
11
+ - equirectangular
12
+ - depth
13
+ - camera-pose
14
+ - embodied-ai
15
+ - world-model
16
+ - synthetic
17
+ size_categories:
18
+ - 100B<n<1T
19
+ ---
20
+
21
+ # WorldRover
22
+
23
+ Paired **360-panoramic** and **first-person** video of photoreal 3D environments, with
24
+ per-frame depth, camera pose and action labels. Four scenes, ~30 min of each view per
25
+ scene — **129 clips per view, ~4.1 h of video** at 30 fps.
26
+
27
+ **This repository is the lite subset**: RGB + camera pose + actions + metadata, **no depth**
28
+ (~103 GB instead of ~800 GB). Lossless 16-bit depth is 87% of the bytes, so it lives in the
29
+ per-scene repositories — take it only for the scenes you need.
30
+
31
+ | Scene | Clips per view | Per view | Full repo (with depth) |
32
+ |---|---|---|---|
33
+ | med_village | 13 | 32.1 min | [WorldRover-med_village](https://huggingface.co/datasets/xjxu21/WorldRover-med_village) — 270 GB |
34
+ | paris | 23 | 30.7 min | [WorldRover-paris](https://huggingface.co/datasets/xjxu21/WorldRover-paris) — 152 GB |
35
+ | venice | 46 | 30.4 min | [WorldRover-venice](https://huggingface.co/datasets/xjxu21/WorldRover-venice) — 154 GB |
36
+ | art_nouveau | 47 | 30.2 min | [WorldRover-art_nouveau](https://huggingface.co/datasets/xjxu21/WorldRover-art_nouveau) — 164 GB |
37
+
38
+ ## What makes it paired
39
+
40
+ `pano/<clip_id>` and `fp/<clip_id>` are the **same camera path**, frame for frame: the
41
+ first-person clip was rendered from the panoramic clip's own per-frame trajectory, and the
42
+ two `camera_trajectory.csv` files agree to **0.000000 cm / deg** — not merely to a
43
+ tolerance. That gives the same world state under two very different projections without
44
+ having to trust an interpolated alignment.
45
+
46
+ Clips are 35 s to 3.5 min of continuous motion — no cuts, no teleports.
47
+
48
+ ## Tools
49
+
50
+ ```bash
51
+ git clone https://github.com/AlayaLab/WorldRover
52
+ pip install -r WorldRover/requirements.txt
53
+ ```
54
+
55
+ ```python
56
+ from worldrover import Clip
57
+ clip = Clip("venice/fp/venice_000003")
58
+ rgb, depth_m = clip.rgb_frame(100), clip.depth_frame(100) # sRGB uint8; planar metres
59
+ pts = clip.points_world(100) # world points, centimetres
60
+ ```
61
+
62
+ Three conventions the tools handle for you, and that are easy to get wrong by hand:
63
+ depth codes are **log-quantized** and store **radial** distance (convert before
64
+ unprojecting); `camera_trajectory.csv` has `n_frames + 1` rows (the last is the closing
65
+ keyframe, the authoritative count is `depth/depth.meta.json`); poses are Unreal-style —
66
+ left-handed, centimetres, X-forward / Y-right / Z-up, camera looking down its own +X.
67
+
68
+ ## Related
69
+
70
+ * Collection (all parts in one place): https://huggingface.co/collections/xjxu21/worldrover-6a851193b19350ca6de9f424
71
+ * Lite subset (no depth, ~103 GB): https://huggingface.co/datasets/xjxu21/WorldRover
72
+ * Full per-scene: [med_village](https://huggingface.co/datasets/xjxu21/WorldRover-med_village) · [paris](https://huggingface.co/datasets/xjxu21/WorldRover-paris) · [venice](https://huggingface.co/datasets/xjxu21/WorldRover-venice) · [art_nouveau](https://huggingface.co/datasets/xjxu21/WorldRover-art_nouveau)
73
+ * Tools: https://github.com/AlayaLab/WorldRover
74
+
75
+ ## License
76
+
77
+ Rendered video, depth, camera pose and action labels are released for research use. The
78
+ underlying 3D environments are third-party commercial assets, are **not** redistributed
79
+ here, and each clip's `description.json` records its asset pack and license. Tools are MIT.