Files
.config
.vscode
Compare
Date-Group
Delete-By-Distinct
Delete-By-Relative
Distance
Drag-Drop-Explorer
Drag-Drop-Search
Duplicate-Search
Face
FaceParts
FaceRecognitionDotNet
Dlib
Extensions
DisposableObject.cs
FaceEncoding.cs
FaceRecognition.cs
FaceRecognitionDotNet.csproj
FaceRecognitionModels.cs
Image.cs
ModelParameter.cs
Point.cs
Instance
Map
Metadata
Move-By-Id
PhotoPrism
PrepareForOld
Property
Property-Compare
Rename
Resize
Shared
Tests
TestsWithFaceRecognitionDotNet
.editorconfig
.gitattributes
.gitignore
.txt
View-by-Distance-MKLink-Console.sln
package.json
view-by-distance-mklink-con…/FaceRecognitionDotNet/ModelParameter.cs

49 lines
1015 B
C#

namespace View_by_Distance.FaceRecognitionDotNet;
/// <summary>
/// Describes the model binary datum. This class cannot be inherited.
/// </summary>
public sealed class ModelParameter
{
#region Properties
/// <summary>
/// Gets or sets the binary data of model for 68 points face landmarks.
/// </summary>
public byte[]? PosePredictor68FaceLandmarksModel
{
get;
set;
}
/// <summary>
/// Gets or sets the binary data of model for 5 points face landmarks.
/// </summary>
public byte[]? PosePredictor5FaceLandmarksModel
{
get;
set;
}
/// <summary>
/// Gets or sets the binary data of model for face encoding.
/// </summary>
public byte[]? FaceRecognitionModel
{
get;
set;
}
/// <summary>
/// Gets or sets the binary data of model for face detector by using CNN.
/// </summary>
public byte[]? CnnFaceDetectorModel
{
get;
set;
}
#endregion
}