Emgu.CV.FisherFaceRecognizer.FisherFaceRecognizer C# (CSharp) Метод

FisherFaceRecognizer() публичный Метод

Create a FisherFaceRecognizer
public FisherFaceRecognizer ( int numComponents, double threshold ) : System
numComponents int The number of components, use 0 for default
threshold double The distance threshold
Результат System
        public FisherFaceRecognizer(int numComponents, double threshold)
        {
            _ptr = CvInvoke.CvFisherFaceRecognizerCreate(numComponents, threshold);
        }
FisherFaceRecognizer