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