MATLAB: HeLP

MATLAB

so i have two images (image1 and image2) in the format.tiff and i want to combine them by creating a new one (leftside of image1 and rightsideof image2)i have to

Best Answer

imshow([image1(:,1:ceil(1:size(image1,2)/2)) image2(:,floor(1:size(image2,2)/2):end)])