How can I open an image in MATLAB GUI in a new window ? Please answer :)

13 次查看(过去 30 天)
Hello, I have a problem, I want to open an image in new window, when somebody push a radio button. Because when a use function: imread and imshow I can only show an imgae in axes area. I want to change that,please answer my question.

采纳的回答

Adam
Adam 2015-10-21
Just put:
figure;
in front of your plotting instruction. Or if you want to be fussy like I am, something more like:
figure; hAxes = gca;
imshow( RGB, 'Parent', gca );
where 'RGB' is whatever image you were showing in normal usage of imshow.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Environment and Settings 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by