This is a very simple question but I couldn\'t find the answer in Google or in OpenCV documentation. How do you insert a row with either a vector or a default number at the
The added element must be a Mat with the same number of columns as the container matrix:
Mat
cv::Mat m = cv::Mat::ones(4, 3, CV_64F); // 3 cols, 4 rows cv::Mat row = cv::Mat::ones(1, 3, CV_64F); // 3 cols, 1 row m.push_back(row); // 3 cols, 5 rows