Loren on the Art of MATLAB

Turn ideas into MATLAB

Note

Loren on the Art of MATLAB has been archived and will not be updated.

Graphical Display Techniques – Part 2

In a recent post I discussed how to use different linestyles, colors, and marker properties to ensure that lines are markers that you superimpose on a plot will be visible, regardless of what the underlying picture is. Today I will show another technique that works for overlaying images or patches on a plot.

Contents

Let me show how to peek under a patch overlying an image.

load clown
image(X),colormap(map)
hold on
xx = [150 230 230 150]';
yy = [40 40 110 110]';
hp  = patch(xx,yy,'g');

As you can see, the green patch I placed on top of the eye makes it impossible to see the covered region of the image. To get a hint at what lies underneath, I can change the transparency of the patch, by changing the transparency of the patch face.

set(hp,'FaceAlpha',0.2)
hold off

What Techniques Do You Use?

Do you have any interesting visualization techniques to share for combining more lines, patches, etc. with other graphical components? Please share them here.




Published with MATLAB® 7.10


  • print

Comments

To leave a comment, please click here to sign in to your MathWorks Account or create a new one.