SegmentB, personKey,

personKeyFormatted and Sorting
This commit is contained in:
2022-09-01 01:18:08 -07:00
parent d4c950e8e3
commit 73de1070b8
17 changed files with 847 additions and 573 deletions

View File

@ -7,6 +7,7 @@ public interface IFace
public List<FaceDistance> FaceDistances { get; }
public FaceEncoding? FaceEncoding { get; }
public Dictionary<Stateless.FacePart, FacePoint[]>? FaceParts { get; }
public List<int[]>? FaceNumbers { get; }
public Location? Location { get; }
public int? LocationIndex { get; }
public OutputResolution? OutputResolution { get; }

View File

@ -9,5 +9,6 @@ public interface IMapping
public bool Forced { get; }
public int? NormalizedPixelPercentage { get; }
public PersonBirthday PersonBirthday { get; }
public string SegmentB { get; }
}

View File

@ -0,0 +1,12 @@
namespace View_by_Distance.Shared.Models.Properties;
public interface ISorting
{
public double? Confidence { init; get; }
public double? Distance { init; get; }
public int? FaceEncoding { init; get; }
public int Id { init; get; }
public int? NormalizedPixelPercentage { init; get; }
}