Howto insert image in guide in red area ?
2 次查看(过去 30 天)
显示 更早的评论
回答(1 个)
Walter Roberson
2017-9-26
Create an axes that is positioned there. Set the axes Visible property off. imshow() or image() an image into place.
2 个评论
Walter Roberson
2017-9-26
fig = gcf;
ax = axes('Parent', fig, 'Units', 'normal', 'Position', [.05 0.75 .25 0.40]);
TheImage = imread('cameraman.tif');
image(TheImage, 'Parent', ax);
colormap(ax, gray(256));
axis(ax, 'image');
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Red 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!