I want to merge a few cv::Mat
, when I use mat1.push_back(mat2)
it add mat2
to the end of mat1
vertically , is there a way to do this horizontally?
The only other option I can think of is making every cv::Mat
into a cv::RotatedRect
, rotate it, creating a new Mat
, merging, rotating everything in the end in the same way, but it sound pointlessly long if there is another way