Array of an image
6 ビュー (過去 30 日間)
古いコメントを表示
Hi, I want to create a list of an images so that i can acces that array in my next button of app to display next image.
How to create list of images?
0 件のコメント
回答 (1 件)
KSSV
2021 年 5 月 20 日
img = dir('*.jpeg') ; % give your extension here
N = length(img) ; % number of jpeg images in the folder
for i = 1:N
this_img = img(i).name ;
I = imread(this_img) ;
imshow(I)
end
2 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!