willow-cuhk commited on
Commit
318cb2e
·
verified ·
1 Parent(s): a46366b

Update dataset structure with detailed file format documentation

Browse files
Files changed (1) hide show
  1. README.md +54 -22
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/ # Human Action Recognition (per-action organized)
71
- ── data/
72
- ├── depth_color/
73
- ├── ir/
74
- ├── thermal/
75
- ├── imu/
76
- ── radar/
77
- ── skeleton/
78
- └── GT/ # Ground truth annotations
79
- ├── HARn/ # Human Action Reasoning (per-modality organized)
80
- ── data/
81
- ── GT/
82
- ── HAU/ # Human Action Understanding (per-modality organized)
83
- ── data/
84
- └── GT/
85
- └── source_data/ # Raw source data
86
- ├── data/
87
- ── GT/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  ```
89
 
90
- - **HAR**: Singular well-defined actions for traditional classification tasks
91
- - **HAU**: Sequential actions for temporal and contextual understanding
92
- - **HARn**: Sequential actions for next-action reasoning and prediction
93
- - **source_data**: Raw unprocessed sensor data
 
 
 
 
 
 
 
 
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