Why are the numbers on my figure axes upside-down when I try to superimpose a PATCH object onto an image using MATLAB 7.9 (R2009b)?
Show older comments
I want to superimpose a semi-transparent PATCH object on an image, but the numbers on axes are mirrored and upside-down in MATLAB 7.9 (R2009b).
Reproduction Steps:
A = imread('cameraman.tif');
figure('Renderer','OpenGL');
imagesc(A);
patch([100 150 150 100],[150 150 100 100],'k','FaceAlpha',.25)
Accepted Answer
More Answers (0)
Categories
Find more on Graphics Performance in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!