FileStorageMode Enumeration |
http://www.emgu.com
File storage mode
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
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
|
See Also