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

LatentSvmDetector() public method

Load the trained detector from file
public LatentSvmDetector ( String fileName ) : System
fileName String The trained laten svm file
return System
        public LatentSvmDetector(String fileName)
        {
            _ptr = CvInvoke.cvLoadLatentSvmDetector(fileName);
             if (_ptr == IntPtr.Zero)
            throw new ArgumentException(String.Format("Unable to create latent svm model from the file {0}.", fileName));
        }