Enum FileStorage.Modes
File storage mode
Namespace: OpenCvSharp
Assembly: OpenCvSharp.dll
Syntax
public enum Modes
Fields
Name | Description |
---|---|
Append | The storage is open for appending |
Base64 | flag, write rawdata in Base64 by default. (consider using WRITE_BASE64) |
FormatAuto | flag, auto format |
FormatXml | flag, XML format |
FormatYaml | flag, YAML format |
Memory | flag, read data from source or write data to the internal buffer (which is returned by FileStorage::release) |
Read | The storage is open for reading |
Write | The storage is open for writing |
WriteBase64 | flag, enable both WRITE and BASE64 |