overlay to image matrix together

조회 수: 1 (최근 30일)
mahesh chathuranga
mahesh chathuranga 2013년 9월 12일
I want to overlay two images (in resultant image I want to see details of both images.) any one can help me?
  댓글 수: 1
Jan
Jan 2013년 9월 12일
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.

댓글을 달려면 로그인하십시오.

채택된 답변

Image Analyst
Image Analyst 2013년 9월 12일
Try imfuse() or imshowpair().
  댓글 수: 3
Image Analyst
Image Analyst 2013년 9월 12일
편집: Image Analyst 2013년 9월 12일
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.
mahesh chathuranga
mahesh chathuranga 2013년 9월 13일
thank you

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Laurent
Laurent 2013년 9월 12일
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
mahesh chathuranga
mahesh chathuranga 2013년 9월 12일
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
Laurent
Laurent 2013년 9월 12일
편집: Laurent 2013년 9월 12일
Ah, assuming that your images are binary images you could do:
overlay_im=image1|image2;

댓글을 달려면 로그인하십시오.


Steve Eddins
Steve Eddins 2013년 9월 12일
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.

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by