Click or drag to resize

FileStorageMode Enumeration

File storage mode

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
[FlagsAttribute]
public enum Mode
Members
  Member nameValueDescription
Read0 The storage is open for reading
Write1 The storage is open for writing
Append2 The storage is open for appending
Memory4 flag, read data from source or write data to the internal buffer (which is returned by FileStorage::release)
FormatAuto0 flag, auto format
FormatXml8 flag, XML format
FormatYaml16 flag, YAML format
Base6464 flag, write rawdata in Base64 by default. (consider using WRITE_BASE64)
WriteBase6465 flag, enable both WRITE and BASE64
See Also