FileStorageMode Enumeration |
http://www.emgu.com
File storage mode
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax[FlagsAttribute]
public enum Mode
<FlagsAttribute>
Public Enumeration Mode
[FlagsAttribute]
public enum class Mode
[<FlagsAttribute>]
type Mode
Members
| Member name | Value | Description |
---|
| Read | 0 |
Open the file for reading
|
| Write | 1 |
Open the file for writing
|
| Append | 2 |
Open the file for appending
|
| Memory | 4 |
ReadMat data from source or write data to the internal buffer
|
| FormatMask | 56 |
Mask for format flags
|
| FormatAuto | 0 |
Auto format
|
| FormatXml | 8 |
XML format
|
| FormatYaml | 16 |
YAML format
|
| FormatJson | 24 |
JSON format
|
| Base64 | 64 |
Write rawdata in Base64 by default. (consider using WriteBase64)
|
| WriteBase64 | 65 |
enable both Write and Base64
|
See Also