OpenCvSharp.FileStorage.FileStorage C# (CSharp) Method

FileStorage() public method

The full constructor
public FileStorage ( string source, Mode flags, string encoding = null ) : System
source string Name of the file to open or the text string to read the data from. /// Extension of the file (.xml or .yml/.yaml) determines its format /// (XML or YAML respectively). Also you can append .gz to work with /// compressed files, for example myHugeMatrix.xml.gz. /// If both FileStorage::WRITE and FileStorage::MEMORY flags are specified, /// source is used just to specify the output file format /// (e.g. mydata.xml, .yml etc.).
flags Mode
encoding string Encoding of the file. Note that UTF-16 XML encoding is not supported /// currently and you should use 8-bit encoding instead of it.
return System
        public FileStorage(string source, Mode flags, string encoding = null)
        {
            if (source == null)
                throw new ArgumentNullException(nameof(source));
            ptr = NativeMethods.core_FileStorage_new2(source, (int)flags, encoding);
        }

Same methods

FileStorage::FileStorage ( ) : System