Overlaying manipulated RBG with grayscale image

3 views (last 30 days)
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!

Accepted Answer

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

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!