Click or drag to resize

FileNodeTypes Enumeration

type of the file storage node

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
[FlagsAttribute]
public enum Types
Members
  Member nameValueDescription
None0 empty node
Int1 an integer
Real2 floating-point number
Float2 synonym or REAL
Str3 text string in UTF-8 encoding
String3 synonym for STR
Seq4 sequence
Map5 mapping
TypeMask7
Flow8 compact representation of a sequence or mapping. Used only by YAML writer
Uniform8 if set, means that all the collection elements are numbers of the same type (real's or int's). UNIFORM is used only when reading FileStorage; FLOW is used only when writing. So they share the same bit
Empty16 empty structure (sequence or mapping)
Named32 the node has a name (i.e. it is element of a mapping)
See Also