After testing E_Distance.SaveGroupedFaceEncodings

This commit is contained in:
2022-08-07 12:29:46 -07:00
parent 2158b4cfc2
commit daf5f428b9
57 changed files with 2626 additions and 660 deletions

View File

@ -9,51 +9,46 @@ public enum FacePart
/// <summary>
/// Specifies the chin.
/// </summary>
Chin,
Chin = 0,
/// <summary>
/// Specifies the left eyebrow.
/// </summary>
LeftEyebrow,
LeftEyebrow = 17,
/// <summary>
/// Specifies the right eyebrow.
/// </summary>
RightEyebrow,
RightEyebrow = 22,
/// <summary>
/// Specifies the nose bridge.
/// </summary>
NoseBridge,
NoseBridge = 27,
/// <summary>
/// Specifies the nose tip.
/// </summary>
NoseTip,
NoseTip = 31,
/// <summary>
/// Specifies the left eye.
/// </summary>
LeftEye,
LeftEye = 36,
/// <summary>
/// Specifies the right eye.
/// </summary>
RightEye,
RightEye = 42,
/// <summary>
/// Specifies the top lip.
/// </summary>
TopLip,
TopLip = 48,
/// <summary>
/// Specifies the bottom lip.
/// </summary>
BottomLip,
/// <summary>
/// Specifies the nose.
/// </summary>
Nose,
BottomLip = 55
}