Init
This commit is contained in:
18
Shared/Models/Properties/IFace.cs
Normal file
18
Shared/Models/Properties/IFace.cs
Normal file
@ -0,0 +1,18 @@
|
||||
namespace View_by_Distance.Shared.Models.Properties;
|
||||
|
||||
public interface IFace
|
||||
{
|
||||
|
||||
#pragma warning disable IDE1006
|
||||
public double? α { get; }
|
||||
#pragma warning restore IDE1006
|
||||
public DateTime DateTime { get; }
|
||||
public Models.FaceEncoding FaceEncoding { get; }
|
||||
public Dictionary<string, Models.FacePoint[]> FaceLandmarks { get; }
|
||||
public Models.Location Location { get; }
|
||||
public int? LocationIndex { get; }
|
||||
public Models.OutputResolution OutputResolution { get; }
|
||||
public bool Populated { get; }
|
||||
public string RelativePath { get; }
|
||||
|
||||
}
|
Reference in New Issue
Block a user