Howto insert image in guide in red area ?

4 次查看(过去 30 天)

回答(1 个)

Walter Roberson
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
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 CenterFile Exchange 中查找有关 Red 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by