How do I obtain a composite of two grayscale images?

조회 수: 1 (최근 30일)
Ronaldo
Ronaldo 2013년 8월 23일
I want to make a composite of two images with "imfuse" function as follow:
imfuse(A,RA,B,RB,'ColorChannels',[1 2 0])
Is there anyway to make the Colorchannels "off"
  댓글 수: 4
Ronaldo
Ronaldo 2013년 8월 23일
편집: Ronaldo 2013년 8월 23일
The images that I started with are gray scale. I want a gray scale image as the output as well. In the output image, I see green-magenta color which is related to imfuse command (The colorchannels part). I try not to have the green-magneta color in my final images.
Image Analyst
Image Analyst 2013년 8월 24일
Do you just want to average the two images?

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

채택된 답변

Anand
Anand 2013년 8월 24일
Have you tried this:
[C,RC] = imfuse(A,RA,B,RB,'blend');

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by