FaceFile for D2
This commit is contained in:
10
Shared/Models/Properties/IFacePoint.cs
Normal file
10
Shared/Models/Properties/IFacePoint.cs
Normal file
@ -0,0 +1,10 @@
|
||||
namespace View_by_Distance.Shared.Models.Properties;
|
||||
|
||||
public interface IFacePoint
|
||||
{
|
||||
|
||||
public int Index { get; }
|
||||
public int X { get; }
|
||||
public int Y { get; }
|
||||
|
||||
}
|
12
Shared/Models/Properties/ILocation.cs
Normal file
12
Shared/Models/Properties/ILocation.cs
Normal file
@ -0,0 +1,12 @@
|
||||
namespace View_by_Distance.Shared.Models.Properties;
|
||||
|
||||
public interface ILocation
|
||||
{
|
||||
|
||||
public int Bottom { init; get; }
|
||||
public double Confidence { init; get; }
|
||||
public int Left { init; get; }
|
||||
public int Right { init; get; }
|
||||
public int Top { init; get; }
|
||||
|
||||
}
|
Reference in New Issue
Block a user