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,19 @@
namespace View_by_Distance.Shared.Models.Stateless;
/// <summary>
/// Specifies the image mode.
/// </summary>
public enum Mode
{
/// <summary>
/// Specifies that the rgb (8-bit Red, Green and Blue, 3 channels) image mode.
/// </summary>
Rgb,
/// <summary>
/// Specifies that the greyscale image mode.
/// </summary>
Greyscale
}