config: mirror metadata (keypoint schema + bundled detector pairing)
Browse files- config.json +33 -0
config.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "rtmpose",
|
| 3 |
+
"variant": "t_coco",
|
| 4 |
+
"input_size": [192, 256],
|
| 5 |
+
"num_keypoints": 17,
|
| 6 |
+
"keypoint_names": [
|
| 7 |
+
"nose",
|
| 8 |
+
"left_eye",
|
| 9 |
+
"right_eye",
|
| 10 |
+
"left_ear",
|
| 11 |
+
"right_ear",
|
| 12 |
+
"left_shoulder",
|
| 13 |
+
"right_shoulder",
|
| 14 |
+
"left_elbow",
|
| 15 |
+
"right_elbow",
|
| 16 |
+
"left_wrist",
|
| 17 |
+
"right_wrist",
|
| 18 |
+
"left_hip",
|
| 19 |
+
"right_hip",
|
| 20 |
+
"left_knee",
|
| 21 |
+
"right_knee",
|
| 22 |
+
"left_ankle",
|
| 23 |
+
"right_ankle"
|
| 24 |
+
],
|
| 25 |
+
"skeleton": [
|
| 26 |
+
[15, 13], [13, 11], [16, 14], [14, 12], [11, 12],
|
| 27 |
+
[5, 11], [6, 12], [5, 6], [5, 7], [6, 8],
|
| 28 |
+
[7, 9], [8, 10], [1, 2], [0, 1], [0, 2],
|
| 29 |
+
[1, 3], [2, 4], [3, 5], [4, 6]
|
| 30 |
+
],
|
| 31 |
+
"detector_repo_id": "CondadosAI/rtmdet_t_coco",
|
| 32 |
+
"acaua_task": "pose"
|
| 33 |
+
}
|