Datasets:
ArXiv:
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -107,9 +107,10 @@ huggingface-cli download FastUMIPro/example_data_fastumi_pro_raw --repo-type dat
|
|
| 107 |
```
|
| 108 |
|
| 109 |
Mirror Download (Recommended)
|
| 110 |
-
bash
|
| 111 |
# Set mirror endpoint
|
| 112 |
export HF_ENDPOINT=https://hf-mirror.com
|
|
|
|
| 113 |
|
| 114 |
# Download via mirror
|
| 115 |
huggingface-cli download --repo-type dataset --resume-download FastUMIPro/example_data_fastumi_pro_raw --local-dir ~/fastumi_data/
|
|
@@ -140,19 +141,24 @@ session_001/
|
|
| 140 |
├── merged_trajectory.txt
|
| 141 |
└── merge_stats.txt
|
| 142 |
```
|
| 143 |
-
|
| 144 |
-
Data
|
| 145 |
-
|
| 146 |
-
|
| 147 |
-
|
| 148 |
-
|
| 149 |
-
|
| 150 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 151 |
Pose Data Format
|
| 152 |
-
All pose data (SLAM, Vive, Merged) follow the same format:
|
| 153 |
|
| 154 |
-
|
|
|
|
| 155 |
[Pos_X, Pos_Y, Pos_Z, Q_X, Q_Y, Q_Z, Q_W]
|
|
|
|
| 156 |
|
| 157 |
🔄 Data Conversion
|
| 158 |
[TBD - Data conversion methods will be added here]
|
|
|
|
| 107 |
```
|
| 108 |
|
| 109 |
Mirror Download (Recommended)
|
| 110 |
+
```bash
|
| 111 |
# Set mirror endpoint
|
| 112 |
export HF_ENDPOINT=https://hf-mirror.com
|
| 113 |
+
```
|
| 114 |
|
| 115 |
# Download via mirror
|
| 116 |
huggingface-cli download --repo-type dataset --resume-download FastUMIPro/example_data_fastumi_pro_raw --local-dir ~/fastumi_data/
|
|
|
|
| 141 |
├── merged_trajectory.txt
|
| 142 |
└── merge_stats.txt
|
| 143 |
```
|
| 144 |
+
|
| 145 |
+
## Data Specifications
|
| 146 |
+
|
| 147 |
+
| Data Type | Path | Shape/Type | Description |
|
| 148 |
+
| :--- | :--- | :--- | :--- |
|
| 149 |
+
| **RGB Images** | `Frames/frame_...jpg` | `(frames, 1080, 1920, 3)`, `uint8`, 60 FPS | Camera video data |
|
| 150 |
+
| **SLAM Poses** | `slam_raw.txt` | `(timestamps, 7)`, `float` | UMI end-effector poses |
|
| 151 |
+
| **Vive Poses** | `vive_data_tum.txt` | `(timestamps, 7)`, `float` | Vive base station poses |
|
| 152 |
+
| **ToF PointClouds** | `PointClouds/pointcloud_...pcd` | `pcd format` | Time-of-Flight point cloud data |
|
| 153 |
+
| **Clamp Data** | `clamp_data_tum.txt` | `(timestamps, 1)`, `float` | Gripper spacing (mm) |
|
| 154 |
+
| **Merged Trajectory** | `merged_trajectory.txt` | `(timestamps, 7)`, `float` | Fused trajectory (Vive/UMI based on velocity) |
|
| 155 |
+
|
| 156 |
Pose Data Format
|
|
|
|
| 157 |
|
| 158 |
+
All pose data (SLAM, Vive, Merged) follow the same format:
|
| 159 |
+
```
|
| 160 |
[Pos_X, Pos_Y, Pos_Z, Q_X, Q_Y, Q_Z, Q_W]
|
| 161 |
+
```
|
| 162 |
|
| 163 |
🔄 Data Conversion
|
| 164 |
[TBD - Data conversion methods will be added here]
|