Remove Person Require People File,
PersonContainer and bug fix for GetRightPadded
This commit is contained in:
.vscode
Compare
Instance
DlibDotNet.cs
Models
appsettings.Development.jsonappsettings.Staging.jsonappsettings.jsonMap/Models
Property/Models
Shared/Models
Tests
TestsWithFaceRecognitionDotNet/Models
@ -6,6 +6,11 @@ public interface IMapping
|
||||
static string GetDeterministicHashCodeKey(int id, int normalizedPixelPercentage)
|
||||
=> $"{id}.{normalizedPixelPercentage}";
|
||||
|
||||
(int?, int?, List<Models.Face>?) TestStatic_GetReversedDeterministicHashCodeKey(int locationDigits, string file) =>
|
||||
GetReversedDeterministicHashCodeKey(locationDigits, file);
|
||||
static (int?, int?, List<Models.Face>?) GetReversedDeterministicHashCodeKey(int locationDigits, string file) =>
|
||||
Mapping.GetReversedDeterministicHashCodeKey(locationDigits, false, new(), file);
|
||||
|
||||
(int?, int?, List<Models.Face>?) TestStatic_GetReversedDeterministicHashCodeKey(int locationDigits, bool keyValuePairsAny, Dictionary<int, List<Models.Face>> keyValuePairs, string file) =>
|
||||
GetReversedDeterministicHashCodeKey(locationDigits, keyValuePairsAny, keyValuePairs, file);
|
||||
static (int?, int?, List<Models.Face>?) GetReversedDeterministicHashCodeKey(int locationDigits, bool keyValuePairsAny, Dictionary<int, List<Models.Face>> keyValuePairs, string file) =>
|
||||
|
Reference in New Issue
Block a user