フィルターのクリア

Howto insert image in guide in red area ?

1 回表示 (過去 30 日間)
Adisorn Phanukthong
Adisorn Phanukthong 2017 年 9 月 26 日
コメント済み: Walter Roberson 2017 年 9 月 26 日

回答 (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 件のコメント
Adisorn Phanukthong
Adisorn Phanukthong 2017 年 9 月 26 日
Please sample code
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 Center および File ExchangeRed についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by