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