Overlaying manipulated RBG with grayscale image

1 次查看(过去 30 天)
Hello all!
I have an all red image ("red") that I combined with a binary mask ("mask"), such that only the pixels that are true in the binary mask is shown. I need the transparent red to be displayed as an overlay with a grayscale background image ("background"). Essentially, I want the transparent red to highlight parts of my grayscale image. I built a transparent red image corresponding to the binary mask with the following:
red=zeros(512,512,3);
red(:,:,1)=1;
hold on
h = imshow(red);
hold off
set(h, 'AlphaData', mask.*0.3)
I cannot figure out how to overlay this image with my background grayscale image however... The two keep showing as separate figures. Thank you so much!

采纳的回答

Image Analyst
Image Analyst 2016-2-8
  1 个评论
Brian
Brian 2016-2-9
The first link is exactly what I needed! Turns out I just have my plotting command in the wrong line. Thank you so much!

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by