| FormatType Enumeration |
Output string format of Mat.Dump()
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax Public Enumeration FormatType
public enum class FormatType
Members
| Member name | Value | Description |
---|
| Default | 0 |
Default format.
[1, 2, 3, 4, 5, 6; \n
7, 8, 9, ... ]
|
| MATLAB | 1 | |
| CSV | 2 |
CSV format.
1, 2, 3, 4, 5, 6\n
7, 8, 9, ...
|
| Python | 3 |
Python format.
[[[1, 2, 3], [4, 5, 6]], \n
[[7, 8, 9], ... ]
|
| NumPy | 4 |
NumPy format.
array([[[1, 2, 3], [4, 5, 6]], \n
[[7, 8, 9], .... ]]], type='uint8');
|
| C | 5 |
C language format.
{1, 2, 3, 4, 5, 6, \n
7, 8, 9, ...};
|
See Also