Array of an image
Show older comments
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?
Answers (1)
KSSV
on 20 May 2021
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 Comments
KSSV
on 21 May 2021
5th line is to read the image using imread, 6th line displays the image.
Categories
Find more on Images in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!