MotionCapture/Assets/Models/PoseLandmarkType.cs

41 lines
743 B
C#
Raw Normal View History

2023-02-10 15:28:47 +08:00
namespace Models
{
2023-02-12 16:12:02 +08:00
//名字
2023-02-10 15:28:47 +08:00
public enum PoseLandmarkType
{
Nose,
LeftEyeInner,
LeftEye,
LeftEyeOuter,
RightEyeInner,
RightEye,
RightEyeOuter,
LeftEar,
RightEar,
MouthLeft,
MouthRight,
LeftShoulder,
RightShoulder,
LeftElbow,
RightElbow,
LeftWrist,
RightWrist,
LeftPinky,
RightPinky,
LeftIndex,
RightIndex,
LeftThumb,
RightThumb,
LeftHip,
RightHip,
LeftKnee,
RightKnee,
LeftAnkle,
RightAnkle,
LeftHeel,
RightHeel,
LeftFootIndex,
2023-02-28 12:23:15 +08:00
RightFootIndex,
MaxValue
2023-02-10 15:28:47 +08:00
}
}