Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

how to display 2 images in one ?

I read an image: im=cv2.imread('image.jpg')

I divide it into 2 pictures:

im1=im[0:199,0:99]
im2=im[200:399,0:99]

I display im1 and im2 separately. It is ok. But now, I want to save im1 and im2 in combine and display combine which must display me im. How can I fulfill this ?

how to display 2 images in one ?

I read an image: im=cv2.imread('image.jpg')

I divide it into 2 pictures:

im1=im[0:199,0:99]
im2=im[200:399,0:99]

I display im1 and im2 separately. It is ok. But now, I want to save im1 im1 and im2 in combine and display combine which must display me im. How can I fulfill this ?

how to display 2 images in one ?

I read an image: im=cv2.imread('image.jpg')

I divide it into 2 pictures:

im1=im[0:199,0:99]
im2=im[200:399,0:99]

I display im1 and im2 separately. It is ok. But now, I want to save im1 and im2 in combine and display combine which must display me the same image as im. How can I fulfill this ?

how to display 2 images in one ?

I read an image: im=cv2.imread('image.jpg')

I divide it into 2 pictures:

im1=im[0:199,0:99]
im2=im[200:399,0:99]

I display im1 and im2 separately. It is ok.

But now, I want to save im1 and im2 in combine and display combine which must display me the same image as im. How can I fulfill this ?