MATLAB: How to obtain a composite of two grayscale images

Image Processing Toolboximfuse image composite

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"

Best Answer

Have you tried this:
[C,RC] = imfuse(A,RA,B,RB,'blend');
Related Question