Array of an image
조회 수: 13 (최근 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!