OpenCvSharp.FileStorage.IsOpened C# (CSharp) Méthode

IsOpened() public méthode

Returns true if the object is associated with currently opened file.
public IsOpened ( ) : bool
Résultat bool
        public virtual bool IsOpened()
        {
            if (disposed)
                throw new ObjectDisposedException("FileStorage");
            return NativeMethods.core_FileStorage_isOpened(ptr) != 0;
        }