フィルターのクリア

How to display an image in UI Figure on app designer?

173 ビュー (過去 30 日間)
tejas alva
tejas alva 2018 年 9 月 13 日
編集済み: Mostafa Amr 2022 年 5 月 5 日
How can i display the figure i select from the folder in UI figure of App designer? I am using version 2016a and as per the code below, when i click the "button", the image opens in a different window.
% Button button pushed function
function ButtonButtonPushed2(app)
[file,path]=uigetfile({'*.jpg';'*.bmp';'*.gif';'*.tiff'}, 'Select file');
a= imread(file);
imshow(a);

採用された回答

OCDER
OCDER 2018 年 9 月 13 日
Try this:
imshow(a, 'parent', app.UIAxes);
But, you'll run into issues with having all this x, y, title of axes still shown and taking up space. See this post to fix that issue:
  14 件のコメント
Eric Sargent
Eric Sargent 2020 年 5 月 22 日
Starting in R2019a, you can use the uiimage function to create an image component in your App Designer apps.
Mostafa Amr
Mostafa Amr 2022 年 5 月 5 日
編集済み: Mostafa Amr 2022 年 5 月 5 日
[FileName, FilePath]= uigetfile({'*.jpg';'*.bnp';'*.gif';'*.tiff'}, 'Select a file'); %Don't override path.m
if isnumeric(FileName); return; end %User did not select a file
a = imread(fullfile(FilePath, FileName)); %Always use full file path, not relative path
imshow(a, 'Parent' , app.UIAxes); %This should work...
this code gives me an error which is
Error using image
Too many input arguments.
Error in images.internal.basicImageDisplay (line 24)
hh = image(cdata, ...
Error in imshow (line 330)
hh = images.internal.basicImageDisplay(fig_handle,ax_handle,...
when I use imshow outside the appdesigner it works but after trying to use it inside the appdesigner it gives me errors inside it and outside it and that happened with diffrenet codes not only with that and I do not know why (I use matlab R2021a)

サインインしてコメントする。

その他の回答 (1 件)

Melinda Toth-Zubairi
Melinda Toth-Zubairi 2019 年 6 月 12 日
Starting in R2019a, you can use the uiimage function to create an image component in your App Designer apps. See here for more details:

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by