Effacer les filtres
Effacer les filtres

Overlaying manipulated RBG with grayscale image

1 vue (au cours des 30 derniers jours)
Brian
Brian le 8 Fév 2016
Commenté : Brian le 9 Fév 2016
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!

Réponse acceptée

Image Analyst
Image Analyst le 8 Fév 2016
  1 commentaire
Brian
Brian le 9 Fév 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!

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by