Overlaying manipulated RBG with grayscale image

2 visualizzazioni (ultimi 30 giorni)
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!

Risposta accettata

Image Analyst
Image Analyst il 8 Feb 2016
  1 Commento
Brian
Brian il 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!

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by