Table of Contents

Enum FormatType

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

Output string format of Mat.Dump()

public enum FormatType

Fields

C = 5

C language format. {1, 2, 3, 4, 5, 6, \n 7, 8, 9, ...};

CSV = 2

CSV format. 1, 2, 3, 4, 5, 6\n 7, 8, 9, ...

Default = 0

Default format. [1, 2, 3, 4, 5, 6; \n 7, 8, 9, ... ]

MATLAB = 1
NumPy = 4

NumPy format. array([[[1, 2, 3], [4, 5, 6]], \n [[7, 8, 9], .... ]]], type='uint8');

Python = 3

Python format. [[[1, 2, 3], [4, 5, 6]], \n [[7, 8, 9], ... ]