Howto insert image in guide in red area ?
2 ビュー (過去 30 日間)
古いコメントを表示

0 件のコメント
回答 (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!