| FileNodeTypes Enumeration |
type of the file storage node
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax [FlagsAttribute]
public enum Types
<FlagsAttribute>
Public Enumeration Types
[FlagsAttribute]
public enum class Types
[<FlagsAttribute>]
type Types
Members
| Member name | Value | Description |
---|
| None | 0 |
empty node
|
| Int | 1 |
an integer
|
| Real | 2 |
floating-point number
|
| Float | 2 |
synonym or REAL
|
| Str | 3 |
text string in UTF-8 encoding
|
| String | 3 |
synonym for STR
|
| Seq | 4 |
sequence
|
| Map | 5 |
mapping
|
| TypeMask | 7 | |
| Flow | 8 |
compact representation of a sequence or mapping. Used only by YAML writer
|
| Uniform | 8 |
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
|
| Empty | 16 |
empty structure (sequence or mapping)
|
| Named | 32 |
the node has a name (i.e. it is element of a mapping)
|
See Also