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 ?