Help please. i have 2 axes plots on my GUI , i want to reset the output plot(clear the previous output from plot) as i press the load image image button.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Pradeep Gowda
el 9 de Feb. de 2015
Comentada: Pradeep Gowda
el 9 de Feb. de 2015
please help
0 comentarios
Respuesta aceptada
Image Analyst
el 9 de Feb. de 2015
In the LoadImage button callback:
% Reset first axes.
axes(handles.axes1); % Whichever axes you want to reset.
cla('reset');
% Reset second axes.
axes(handles.axes2); % Whichever axes you want to reset.
cla('reset');
axes(handles.axes1); % Whichever axes you want to display in.
imshow(yourImage);
Más respuestas (0)
Ver también
Categorías
Más información sobre Annotations en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!