Added Class Library FaceRecognitionDotNet

This commit is contained in:
2022-07-30 16:43:23 -07:00
parent f642c5669a
commit 2ebec0b7a9
45 changed files with 2398 additions and 149 deletions

View File

@ -0,0 +1,59 @@
namespace View_by_Distance.Shared.Models.Stateless;
/// <summary>
/// Specifies the part of face.
/// </summary>
public enum FacePart
{
/// <summary>
/// Specifies the chin.
/// </summary>
Chin,
/// <summary>
/// Specifies the left eyebrow.
/// </summary>
LeftEyebrow,
/// <summary>
/// Specifies the right eyebrow.
/// </summary>
RightEyebrow,
/// <summary>
/// Specifies the nose bridge.
/// </summary>
NoseBridge,
/// <summary>
/// Specifies the nose tip.
/// </summary>
NoseTip,
/// <summary>
/// Specifies the left eye.
/// </summary>
LeftEye,
/// <summary>
/// Specifies the right eye.
/// </summary>
RightEye,
/// <summary>
/// Specifies the top lip.
/// </summary>
TopLip,
/// <summary>
/// Specifies the bottom lip.
/// </summary>
BottomLip,
/// <summary>
/// Specifies the nose.
/// </summary>
Nose,
}