41 lines
743 B
C#
41 lines
743 B
C#
namespace Models
|
|
{
|
|
//名字
|
|
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,
|
|
RightFootIndex,
|
|
MaxValue
|
|
}
|
|
} |