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
Post a Comment