How do I display images in App designer ?

21 次查看(过去 30 天)
image_train is a 3 dimentional matri. I want to display images in App-Designer.
% image_train is a 3 dimentional matrix. I want to display images in App designer
% imshow is not helping.
methods (Access = private)
% Value changed function: ImageSpinner
function ImageSpinnerValueChanged(app, event)
value = app.ImageSpinner.Value;
image_now = app.image_train(:,:,value);
%image_now = rand(50,50)
%imshow(app.UIAxes,image_now);
imshow(app.Image,image_now);
end
end

回答(1 个)

Jemima Pulipati
Jemima Pulipati 2021-2-20
编辑:Jemima Pulipati 2021-2-20

类别

Help CenterFile Exchange 中查找有关 Develop Apps Using App Designer 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by