Click or drag to resize

FormatType Enumeration

Output string format of Mat.Dump()

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public enum FormatType
Members
  Member nameValueDescription
Default0 Default format. [1, 2, 3, 4, 5, 6; \n 7, 8, 9, ... ]
MATLAB1
CSV2 CSV format. 1, 2, 3, 4, 5, 6\n 7, 8, 9, ...
Python3 Python format. [[[1, 2, 3], [4, 5, 6]], \n [[7, 8, 9], ... ]
NumPy4 NumPy format. array([[[1, 2, 3], [4, 5, 6]], \n [[7, 8, 9], .... ]]], type='uint8');
C5 C language format. {1, 2, 3, 4, 5, 6, \n 7, 8, 9, ...};
See Also