Filter löschen
Filter löschen

How to handle imroi in gui?

2 Ansichten (letzte 30 Tage)
Seombeom Kim
Seombeom Kim am 29 Mai 2013
Hello guys, I've been trying to make image processing gui tool.
In the gui there's image display window and functioning button's.
By the way, I planted a button that functioning imline, imrect and imfreehand in the gui.
So far I had no problem. But after I've made several line or rectangle, I needed to erase some of them.
At this very point, I have no Idea about how to handle these figure I've already made.
I just want to certain selected one to be erased by 'delete' button.
How can I break through this problem? :(

Antworten (1)

David Sanchez
David Sanchez am 31 Mai 2013
You can use the following function to undo the last n plotting operations:
function undo_plot(h, n)
% UNDO_PLOT Undo last 'n' plotting operations.
if nargin == 1
n = 1;
end
if n < 1
error('Can''t undo < 1 plotting operation!');
end
figure(h);
children = get(gca, 'children');
for i = 1 : n
delete(children(i));
end
  2 Kommentare
David Sanchez
David Sanchez am 31 Mai 2013
example of use:
plot([1,1],[2,3]) % plot vertical line hold on plot([0,2],[2,5]) % plot another line undo_plot(1,1) % delete last line and plot returns to its first layout
Seombeom Kim
Seombeom Kim am 8 Jun. 2013
Thank you for your opinion. But I'm afraid, my intention is not to erase lastly created IMROI. I want erase arbitrary one out of several IMROIs. Anyway, I appreciate your kind proposal. Thanks.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Graphics Object Programming finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by