Enum FormatType
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
Output string format of Mat.Dump()
public enum FormatType
Fields
C = 5C language format. {1, 2, 3, 4, 5, 6, \n 7, 8, 9, ...};
CSV = 2CSV format. 1, 2, 3, 4, 5, 6\n 7, 8, 9, ...
Default = 0Default format. [1, 2, 3, 4, 5, 6; \n 7, 8, 9, ... ]
MATLAB = 1NumPy = 4NumPy format. array([[[1, 2, 3], [4, 5, 6]], \n [[7, 8, 9], .... ]]], type='uint8');
Python = 3Python format. [[[1, 2, 3], [4, 5, 6]], \n [[7, 8, 9], ... ]