1 | initial version |
the difference is only in the printing.
if you allocate a Mat like: Mat mu = Mat::ones(2000, 256, CV_64F);
it will have 2000 rows and 256 columns, if you print out mu.size()
it will show [256x2000] (cols, rows)
admittedly confusing, but no error.