FileNodeTypes Enumeration
|
type of the file storage node
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntax[FlagsAttribute]
public enum Types
<FlagsAttribute>
Public Enumeration Types
[FlagsAttribute]
public enum class Types
[<FlagsAttribute>]
type Types
OpenCvSharp.Types = function();
OpenCvSharp.Types.createEnum('OpenCvSharp.Types', true);
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
|
| Ref | 4 |
integer of size size_t.
Typically used for storing complex dynamic structures where some elements reference the others
|
| Seq | 5 |
sequence
|
| Map | 6 |
mapping
|
| TypeMask | 7 | |
| Flow | 8 |
compact representation of a sequence or mapping. Used only by YAML writer
|
| User | 16 |
a registered object (e.g. a matrix)
|
| Empty | 32 |
empty structure (sequence or mapping)
|
| Named | 64 |
the node has a name (i.e. it is element of a mapping)
|
See Also