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
// Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license
/// COCO-Pose dataset skeleton structure (pairs of keypoint indices)
/// Defines which keypoints connect to form the pose skeleton
pub const SKELETON: = ;
/// Limb color indices mapping to `POSE_COLORS`
/// Defines which color from the pose palette to use for each limb
/// Mapping: arms=blue, legs=orange, face=green
pub const LIMB_COLOR_INDICES: = ;
/// Keypoint color indices mapping to `POSE_COLORS`
/// Defines which color from the pose palette to use for each keypoint
/// Mapping: arms=blue, legs=orange, face=green
pub const KPT_COLOR_INDICES: = ;