Ask Your Question

Revision history [back]

Yes, you can do it very easily using OpenCV:

Mat H, V;
hconcat(A, B, H);
vconcat(A, B, V);

Yes, you can do it very easily using OpenCV:

Mat A, B;
... //fill the matrices

Mat H, V;
hconcat(A, B, H);
vconcat(A, B, V);

Yes, you can do it very easily using OpenCV:

Mat A, B;
... //fill //initialize the matrices

Mat H, V;
hconcat(A, B, H);
vconcat(A, B, V);