First image under the following images in GUI
1 次查看(过去 30 天)
显示 更早的评论
In my GUI, I have a button that says "Next Image", after the first image, underneath every following image, the first image is "under" the other images. Is there a code I can insert into my GUI m file to remove that first image?
0 个评论
回答(1 个)
Walter Roberson
2019-2-21
persistent h
if ishghandle(h); delete(h); end
h = imshow(AppropriateArrayVariableGoesHere, 'Parent', handles.AppropriateAxesTagGoesHere)
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!