Emgu.CV.FisherFaceRecognizer.FisherFaceRecognizer C# (CSharp) Method

FisherFaceRecognizer() public method

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
return System
        public FisherFaceRecognizer(int numComponents, double threshold)
        {
            _ptr = CvInvoke.CvFisherFaceRecognizerCreate(numComponents, threshold);
        }
FisherFaceRecognizer