フィルターのクリア

Ho to delete the image from the axes?

9 ビュー (過去 30 日間)
Animesh
Animesh 2013 年 12 月 23 日
コメント済み: Image Analyst 2014 年 2 月 4 日
I want to remove the image from the axes(say axes1) upon clicking a button keeping the axes intact.
I have tried using
children=get(handles.axes1, 'children');
delete(children);
and other things but it completely removes the axes.
Can anyone help??
Thanx in advance

採用された回答

Image Analyst
Image Analyst 2013 年 12 月 23 日
編集済み: Image Analyst 2013 年 12 月 23 日
You need to find the image in the axes with findobj() and then delete it. Like this:
axesHandlesToChildObjects = findobj(h, 'Type', 'image');
if ~isempty(axesHandlesToChildObjects)
delete(axesHandlesToChildObjects);
end
You can't just call cla() or it will delete everything such as text, arrows, overlays, or other annotation you added. Try this full demo:
function test3
% Display an image.
imshow('moon.tif');
axis on;
% Add some text.
text(100,250, 'Moon', 'FontSize', 30, 'Color', 'r');
promptMessage = sprintf('Do you want to clear the image only?');
titleBarCaption = 'Continue?';
button = questdlg(promptMessage, titleBarCaption, 'OK', 'Cancel', 'OK');
if strcmpi(button, 'OK')
% Get rid of image from current axes, but leave text.
ClearImagesFromAxes(gca)
end
%=====================================================================
% Erases all images from the axes.
function ClearImagesFromAxes(h)
axesHandlesToChildObjects = findobj(h, 'Type', 'image');
if ~isempty(axesHandlesToChildObjects)
delete(axesHandlesToChildObjects);
end
return; % from ClearImagesFromAxes
  3 件のコメント
Image Analyst
Image Analyst 2014 年 1 月 8 日
Try "axis on" for the second axis too. Your axis on only applied to the current axes, which presumably was your axes1, so it never got turned on for axes2.
Animesh
Animesh 2014 年 1 月 9 日
Thanks sir. It worked by adding axes(handles.axes2);axis on

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

その他の回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 12 月 23 日
Try
cla(handles.axes1)
  2 件のコメント
Jean Bilheux
Jean Bilheux 2014 年 2 月 3 日
I didn't think about that one ('cla') and it worked great for me !
Image Analyst
Image Analyst 2014 年 2 月 4 日
But it clears more than just the image (which is what the original poster wanted to restrict it to). If you want to clear everything, then that's fine - it will work.

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by