フィルターのクリア

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

10 ビュー (過去 30 日間)
Maciej Wroz
Maciej Wroz 2015 年 10 月 21 日
コメント済み: Maciej Wroz 2015 年 10 月 21 日
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 Center および File ExchangeImage Processing Toolbox についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by