Rename-isWrongYear
EyeThreshold
This commit is contained in:
@ -23,9 +23,14 @@ public interface IFace
|
||||
static Models.Face[] GetFaces(string jsonFileFullName) =>
|
||||
Face.GetFaces(jsonFileFullName);
|
||||
|
||||
double? TestStatic_Getα(Dictionary<FacePart, Models.FacePoint[]> faceParts) =>
|
||||
Getα(faceParts);
|
||||
static double? Getα(Dictionary<FacePart, Models.FacePoint[]> faceParts) =>
|
||||
Face.Getα(faceParts);
|
||||
(bool?, double?) TestStatic_Getα(Dictionary<FacePart, Models.FacePoint[]> faceParts) =>
|
||||
GetEyeα(faceParts);
|
||||
static (bool?, double?) GetEyeα(Dictionary<FacePart, Models.FacePoint[]> faceParts) =>
|
||||
Face.GetEyeα(faceParts);
|
||||
|
||||
(bool, int[]) TestStatic_GetEyeCollection(int threshold, List<Shared.Models.Face> faces) =>
|
||||
GetEyeCollection(threshold, faces);
|
||||
static (bool, int[]) GetEyeCollection(int threshold, List<Shared.Models.Face> faces) =>
|
||||
Face.GetEyeCollection(threshold, faces);
|
||||
|
||||
}
|
Reference in New Issue
Block a user