Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Yes, you can do it very easily using OpenCV:

Mat H, V;
hconcat(A, B, H);
vconcat(A, B, V);
click to hide/show revision 2
No.2 Revision

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);
click to hide/show revision 3
No.3 Revision

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);