matlab - How to control overlap image color? -


i overlapped 2 images , b; overlap image show green-magenta colors: want blue , red. used following code:

  c=imfuse(a,b,'falsecolor','scaling','joint');   redchannel = c(:, :, 1);   bluechannel = c(:, :, 3);   rgbimage = cat(2,redchannel,bluechannel);   imshow (rgbimage) 

by default imfuse uses value 'green-magenta' option 'colorchannels'. can use 'red-cyan' instead:

c = imfuse(a, b, 'falsecolor', 'scaling', 'joint', 'colorchannels', 'red-cyan'); 

Comments

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -