Ask Your Question

psilar's profile - activity

2017-07-07 07:52:53 -0600 answered a question format () function for converting Mat string output format missing gone?

The function prototype has changed in OpenCV. The functionality of

format(matrix, "csv")

is achieved with

cv::format(matrix, cv::Formatter::FMT_CSV)

Options available are FMT_DEFAULT, FMT_MATLAB, FMT_CSV, FMT_PYTHON, FMT_NUMPY, and FMT_C.