フィルターのクリア

Why does my axes disappear when putting a background image?

2 ビュー (過去 30 日間)
Pedro Guevara
Pedro Guevara 2020 年 4 月 1 日
コメント済み: Pedro Guevara 2020 年 4 月 2 日
Good evening. I have the following problem. I am using this code to put an image in a Gui in the background, the objects that I have in the Gui remain visible on the image, except for my 2 axes that I have in the GUI, which seem to be hidden in the image. What should I do to make them look? Thank you.
ha = axes('units','normalized', ...
'position',[0 0 1 1]);
uistack(ha,'bottom');
I=imread('eight.tif');
hi = imagesc(I)
colormap gray
set(ha,'handlevisibility','off', ...
'visible','off')
axes('position',[0.3,0.35,0.4,0.4])
  6 件のコメント
Walter Roberson
Walter Roberson 2020 年 4 月 2 日
set the axes Layer property to 'top' (default is 'bottom')
Pedro Guevara
Pedro Guevara 2020 年 4 月 2 日
@Image Analyst
@Walter Roberson
Thank you very much for your answers. Solve the problem by modifying the "Design" option for the "GUI" and for the "axes". The strange thing is that before it worked perfectly and suddenly this happened, without modifying the specific options.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeBlue についてさらに検索

製品


リリース

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by