overlay to image matrix together

I want to overlay two images (in resultant image I want to see details of both images.) any one can help me?

1 Comment

Please avoid posting multiple thread containing the same questions, see http://www.mathworks.com/matlabcentral/answers/87007-overlay-two-image-matrix-together. Now both threads contains answers and the confusion level is increased without any need.

Sign in to comment.

 Accepted Answer

Image Analyst
Image Analyst on 12 Sep 2013
Try imfuse() or imshowpair().

3 Comments

thank you.I try this,HV=imfuse(H+V); but it gives the error message."??? Undefined function or method 'imfuse' for input arguments of type 'double'.".I cant understand that I'm very new for MATLAB.
Image Analyst
Image Analyst on 12 Sep 2013
Edited: Image Analyst on 12 Sep 2013
You used a + instead of a comma. Try imfuse(H,V). Plus you need to have a modern version of MATLAB. You probably should upgrade to R2013b, because you probably have an ancient version.

Sign in to comment.

More Answers (2)

It depends a lot on your images and what you exactly want, but did you try to just sum them?
overlay_im=image1+image2;
If this is not what you need, please elaborate more on what you would like to achieve.

2 Comments

thank you.but this is not the result what i want. this is my problem, i have two images derived from one image. image1=vertical edges of the original image image2=horizontal edges of the original image now i want to overlay both without summing them
Ah, assuming that your images are binary images you could do:
overlay_im=image1|image2;

Sign in to comment.

Steve Eddins
Steve Eddins on 12 Sep 2013
Image Analyst's answer to use imfuse is good. To use imfuse, you have to have the Image Processing Toolbox with version R2012a or later.
Another option is imoverlay on the File Exchange.

Categories

Find more on Images in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!