OpenCvSharp.CascadeClassifier.Empty C# (CSharp) Method

Empty() public method

Checks whether the classifier has been loaded.
public Empty ( ) : bool
return bool
        public virtual bool Empty()
        {
            if (disposed)
                throw new ObjectDisposedException("CascadeClassifier");
            return NativeMethods.objdetect_CascadeClassifier_empty(ptr) != 0;
        }