| FileStorageMode Enumeration |
File storage mode
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax [FlagsAttribute]
public enum Mode
<FlagsAttribute>
Public Enumeration Mode
[FlagsAttribute]
public enum class Mode
[<FlagsAttribute>]
type Mode
Members
| Member name | Value | Description |
---|
| Read | 0 |
The storage is open for reading
|
| Write | 1 |
The storage is open for writing
|
| Append | 2 |
The storage is open for appending
|
| Memory | 4 |
flag, read data from source or write data to the internal buffer
(which is returned by FileStorage::release)
|
| FormatAuto | 0 |
flag, auto format
|
| FormatXml | 8 |
flag, XML format
|
| FormatYaml | 16 |
flag, YAML format
|
| Base64 | 64 |
flag, write rawdata in Base64 by default. (consider using WRITE_BASE64)
|
| WriteBase64 | 65 |
flag, enable both WRITE and BASE64
|
See Also