File size: 1,710 Bytes
7291ca0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | ---
license: cc-by-4.0
---
# FusionX Multimodal Sample Dataset
This repository contains a sample multimodal dataset including:
- RGB camera frames (30 Hz, JPG)
- Depth images (16-bit PNG in millimeter)
- Tactile glove data (aligned per-frame in Parquet)
- Per-recording metadata
## Structure
To reduce API rate limits and improve upload stability, each recording is stored as a ZIP archive:
Each ZIP file contains a single recording directory structured as follows:
```
recording_YYYYMMDD_HHMMSS/
├── frames.parquet # Per-frame aligned metadata + tactile arrays
├── rgb/ # 30 Hz RGB camera frames (JPEG)
│ ├── 000000.jpg
│ ├── 000001.jpg
│ └── ...
└── depth/ # 16-bit depth images in millimeters (PNG)
├── 000000.png
├── 000001.png
└── ...
```
## How to Use
1. Download the repository (or use `huggingface_hub.snapshot_download`)
2. Unzip all files inside `zips/`
## After Extraction
After unzipping all archives inside the `zips/` directory, you will obtain the original dataset structure:
```
dataset/
├── dataset_info.json
└── recording_YYYYMMDD_HHMMSS/
├── frames.parquet
├── rgb/
│ ├── 000000.jpg
│ └── ...
└── depth/
├── 000000.png
└── ...
```
Each `recording_*` directory represents a single synchronized capture session containing:
- Vision data (RGB + depth)
- Tactile glove data
- Frame-level alignment metadata
## License
Creative Commons Attribution 4.0 (CC BY 4.0)
You are free to:
- Use
- Share
- Modify
- Use commercially
As long as attribution is provided. |