OpenCvSharp.FileStorage.WriteObj C# (CSharp) Method

WriteObj() public method

Writes the registered C structure (CvMat, CvMatND, CvSeq). See cvWrite()
public WriteObj ( string name, IntPtr obj ) : void
name string
obj System.IntPtr
return void
        public void WriteObj(string name, IntPtr obj)
        {
            if (disposed)
                throw new ObjectDisposedException("FileStorage");
            if (name == null)
                throw new ArgumentNullException(nameof(name));
            NativeMethods.core_FileStorage_writeObj(ptr, name, obj);
        }