Merge pull request #2626 from KayKwon:matlab_formatter

This commit is contained in:
Roman Donchenko
2014-06-26 17:40:25 +04:00
committed by OpenCV Buildbot
3 changed files with 66 additions and 22 deletions

View File

@@ -953,12 +953,12 @@ public:
class CV_EXPORTS Formatter
{
public:
enum { FMT_MATLAB = 0,
FMT_CSV = 1,
FMT_PYTHON = 2,
FMT_NUMPY = 3,
FMT_C = 4,
FMT_DEFAULT = FMT_MATLAB
enum { FMT_DEFAULT = 0,
FMT_MATLAB = 1,
FMT_CSV = 2,
FMT_PYTHON = 3,
FMT_NUMPY = 4,
FMT_C = 5
};
virtual ~Formatter();