Update dataset structure with detailed file format documentation
Browse files
README.md
CHANGED
|
@@ -67,30 +67,62 @@ Each participant's data is packaged as a zip file: `CUHK-S_userN-userN.zip`
|
|
| 67 |
|
| 68 |
```
|
| 69 |
CUHK-S/
|
| 70 |
-
├── HAR/
|
| 71 |
-
│
|
| 72 |
-
│
|
| 73 |
-
│
|
| 74 |
-
│
|
| 75 |
-
│
|
| 76 |
-
│
|
| 77 |
-
│
|
| 78 |
-
│
|
| 79 |
-
├──
|
| 80 |
-
│
|
| 81 |
-
│
|
| 82 |
-
|
| 83 |
-
│
|
| 84 |
-
│
|
| 85 |
-
└──
|
| 86 |
-
|
| 87 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 88 |
```
|
| 89 |
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 94 |
|
| 95 |
## IMU Sensor Layout
|
| 96 |
|
|
|
|
| 67 |
|
| 68 |
```
|
| 69 |
CUHK-S/
|
| 70 |
+
├── HAR/ # Human Action Recognition task
|
| 71 |
+
│ └── data/
|
| 72 |
+
│ ├── Depth_Color/ # Colorized depth frames (.png)
|
| 73 |
+
│ ├── IR/ # Infrared frames (.png)
|
| 74 |
+
│ ├── Thermal/ # Thermal imaging frames (.png)
|
| 75 |
+
│ ├── Skeleton/ # Skeleton pose data
|
| 76 |
+
│ │ └── {action}/{user}/{session}/
|
| 77 |
+
│ │ ├── predictions/ # Keypoint JSON (.json) + overlay images (.jpg)
|
| 78 |
+
│ │ └── visualizations/
|
| 79 |
+
│ ├── IMU/ # IMU sensor data (CSV)
|
| 80 |
+
│ │ └── {action}/{user}/{session}/
|
| 81 |
+
│ │ ├── up(LA+RA+C).csv # Upper-body IMU (Left Arm + Right Arm + Chest)
|
| 82 |
+
│ │ └── down(LL+RL).csv # Lower-body IMU (Left Leg + Right Leg)
|
| 83 |
+
│ └── Radar/ # mmWave radar data (CSV)
|
| 84 |
+
│ └── {action}/{user}/{session}/
|
| 85 |
+
│ └── radar_output_T{timestamp}.csv
|
| 86 |
+
│
|
| 87 |
+
├── HAU/ # Human Action Understanding task
|
| 88 |
+
│ └── data/
|
| 89 |
+
│ ├── Depth/ # Visual modality clips as .mp4 video
|
| 90 |
+
│ ├── IR/
|
| 91 |
+
│ └── Thermal/
|
| 92 |
+
│ └── {user}/{session}/
|
| 93 |
+
│ └── {Modality}.mp4
|
| 94 |
+
│
|
| 95 |
+
├── HARn/ # Human Action next-step Reasoning task
|
| 96 |
+
│ └── data/
|
| 97 |
+
│ ├── Depth/ # Video clips as .mp4
|
| 98 |
+
│ └── IR/
|
| 99 |
+
│ └── {action}/{user}/{session}/
|
| 100 |
+
│ └── Depth.mp4
|
| 101 |
+
│
|
| 102 |
+
└── source_data/ # Raw source frames (with timestamps)
|
| 103 |
+
└── data/
|
| 104 |
+
├── Depth_Color/ # Timestamped raw frames (.png)
|
| 105 |
+
├── IR/
|
| 106 |
+
├── Thermal/
|
| 107 |
+
├── Skeleton/
|
| 108 |
+
├── IMU/
|
| 109 |
+
└── Radar/
|
| 110 |
+
└── {user}/{session}/
|
| 111 |
+
└── {Modality}_{timestamp}_{frameId}.png
|
| 112 |
```
|
| 113 |
|
| 114 |
+
**Path naming convention:**
|
| 115 |
+
|
| 116 |
+
| Level | Meaning | Example |
|
| 117 |
+
|-------|---------|---------|
|
| 118 |
+
| `{action}` | Action category with numeric prefix | `10_Stir_drinks` |
|
| 119 |
+
| `{user}` | Participant ID | `user1` |
|
| 120 |
+
| `{session}` | Scene–Environment–Trial index | `2-1-1` (Scene 2, Indoor, Trial 1) |
|
| 121 |
+
|
| 122 |
+
- **HAR**: Singular well-defined actions organized by action category, for traditional classification tasks
|
| 123 |
+
- **HAU**: Sequential action clips organized by user/session, for temporal and contextual understanding
|
| 124 |
+
- **HARn**: Sequential action clips organized by action/user/session, for next-action reasoning
|
| 125 |
+
- **source_data**: Original raw frames with full timestamps, before any task-level processing
|
| 126 |
|
| 127 |
## IMU Sensor Layout
|
| 128 |
|