namespace View_by_Distance.Shared.Models.Stateless;
///
/// Specifies the model of face detector.
///
public enum Model
{
///
/// Specifies that the model is HOG (Histograms of Oriented Gradients) based face detector.
///
Hog,
///
/// Specifies that the model is CNN (Convolutional Neural Network) based face detector.
///
Cnn,
///
/// Specifies that the custom face detector.
///
Custom
}