I have several images in Matobjects with the same size. I would like to create one bix object cv::Matto hold them all
Thus, the size of the new matrix: widthNew = widthOld x the number of matrices, the height remains unchanged.
I found that such a copy can be made using:
void cvCopy(const CvArr* src, CvArr* dst, const CvArr* mask=NULL)
but then, how can you define a mask three different times for three matrices ?.
Regards, Moataz
source
share