Enum StorageFlags
Specifies available flags for creating FileStorage instances.
Namespace: OpenCV.Net
Assembly: OpenCV.Net.dll
Syntax
public enum StorageFlags : int
Fields
Name | Description |
---|---|
Append | Specifies that the file should be open for appending. |
FormatAuto | Specifies that the file format should be automatically determined. |
FormatXml | Specifies that the XML file format should be used. |
FormatYaml | Specifies that the YAML file format should be used. |
Memory | Specifies that all data in the file should be read or that write operations should target internal memory buffers. |
Read | Specifies that the file should be open for reading. |
Write | Specifies that the file should be open for writing. |