22 lines
917 B
C#
22 lines
917 B
C#
namespace View_by_Distance.FaceRecognitionDotNet;
|
|
|
|
internal sealed class FaceRecognitionModels
|
|
{
|
|
|
|
public static string GetPosePredictorModelLocation() => "shape_predictor_68_face_landmarks.dat";
|
|
|
|
public static string GetPosePredictorFivePointModelLocation() => "shape_predictor_5_face_landmarks.dat";
|
|
|
|
public static string GetFaceRecognitionModelLocation() => "dlib_face_recognition_resnet_model_v1.dat";
|
|
|
|
public static string GetCnnFaceDetectorModelLocation() => "mmod_human_face_detector.dat";
|
|
|
|
public static string GetPosePredictor194PointModelLocation() => "helen-dataset.dat";
|
|
|
|
public static string GetAgeNetworkModelLocation() => "adience-age-network.dat";
|
|
|
|
public static string GetGenderNetworkModelLocation() => "utkface-gender-network.dat";
|
|
|
|
public static string GetEmotionNetworkModelLocation() => "corrective-reannotation-of-fer-ck-kdef-emotion-network_test_best.dat";
|
|
|
|
} |