FileStorageMode Enumeration
|
File storage mode
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntax[FlagsAttribute]
public enum Mode
<FlagsAttribute>
Public Enumeration Mode
[FlagsAttribute]
public enum class Mode
[<FlagsAttribute>]
type Mode
OpenCvSharp.Mode = function();
OpenCvSharp.Mode.createEnum('OpenCvSharp.Mode', true);
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)
|
| FotmatMask | 56 |
mask for format flags
|
| FormatAuto | 0 |
flag, auto format
|
| FormatXml | 8 |
flag, XML format
|
| FormatYaml | 16 |
flag, YAML format
|
See Also