Enum FileStorage.Mode
File storage mode
[Flags]
public enum FileStorage.Mode
Fields
Append = 2
Open the file for appending
Base64 = 64
Write rawdata in Base64 by default. (consider using WriteBase64)
FormatAuto = 0
Auto format
FormatJson = FormatXml | FormatYaml
JSON format
FormatMask = 56
Mask for format flags
FormatXml = 8
XML format
FormatYaml = 16
YAML format
Memory = 4
ReadMat data from source or write data to the internal buffer
Read = 0
Open the file for reading
Write = 1
Open the file for writing
WriteBase64 = Write | Base64
enable both Write and Base64