MATLAB: How to change color in overlapping image

falsecolorimageImage Processing Toolboxoverlapping

I created an overlapping image from two images, a and b; I get green-magenta colors:
I want to control the color output: for example, I want blue and red.
c=imfuse(a,b,'falsecolr','Scaling','joint');
All suggestions are welcome

Best Answer

You can use cat(3, r, g, b) to combine images into any color channels you want.