MATLAB: Concatenating three images into one image

image processingImage Processing Toolboxprojection

I have three images (1) the letter, (2)vertical projection, and (3)horizontal projection. I want to merge these images so that they appear as one image as in last image.

Best Answer

Try this:
stitchedImage = [F, upperRightImage; lowerLeftImage, lowerRightImage];
Put whatever image you want into the appropriate location. You may want the lower right image to be a totally white image.