How to read images from one directory into variables using loop?
이전 댓글 표시
I am new in Matlab. I want to read all images from a directory and store each of them into separate variables. For example, if there are 225 images then i should have 225 variables, each of them containing pixel values of corresponding image, no matter same name as image or different.
채택된 답변
추가 답변 (1개)
Rik
2019년 5월 27일
0 개 추천
You don't want numbered variables. Try a cell array instead. That way you can much more easily loop through your images to do the further processing.
댓글 수: 6
Md Farhad Mokter
2019년 5월 27일
Rik
2019년 5월 27일
list=dir('*.png');
IMlist=cell(size(list));
for n=1:numel(list)
IMlist{n}=imread(list(n).name);
end
Md Farhad Mokter
2019년 5월 27일
Rik
2019년 5월 28일
There is no reason to store your images in separate variables. Why do you think you need that?
Md Farhad Mokter
2019년 5월 28일
Rik
2019년 5월 28일
You are much better off just processing the images in a loop without storing the intermediate steps. You could also consider a struct array with a field for the file name and a field with the property of interest (and you could even add a field with the image itself).
카테고리
도움말 센터 및 File Exchange에서 Images에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!