--- license: cc-by-nc-4.0 task_categories: - other tags: - gesture-recognition - action-recognition - multimodal - IMU - video size_categories: - 100K A small portion of the data may have missing camera or IMU modalities. Ensure robust error handling during reading. Example `person_keypoints.json`: ```json { "0": [ { "frame_idx": 0, "filename": "frame_0000.png", "keypoints": [ [1204.31, 181.52, 0.9949], [1208.77, 170.23, 0.9781], [1198.12, 170.84, 0.9675], [1216.43, 181.65, 0.8360], [1187.55, 183.20, 0.6951] ], "bbox": [1133, 106, 1373, 813] }, { "frame_idx": 1, "filename": "frame_0001.png", "keypoints": [ [1204.88, 181.46, 0.9955], [1209.06, 170.34, 0.9761], [1197.93, 170.95, 0.9748] ], "bbox": [1132, 106, 1374, 813] } ], "1": [ { "frame_idx": 0, "filename": "frame_0000.png", "keypoints": [], "bbox": [0, 0, 0, 0] } ] } ``` Notes: 1. Top-level keys (e.g., `"0"`, `"1"`) represent person IDs (string format). 2. Each camera corresponds to a frame list with elements containing `frame_idx`, `filename`, `keypoints`, and `bbox`. 3. Each point in `keypoints` is `[x, y, score]`, following COCO-17 order. 4. When no person is detected in a frame, `keypoints` may be an empty array; handle this during parsing.