Making a vector of images

15 次查看(过去 30 天)
I have a directory with several images like image_1.png, image_2.png... and I need to get these into a vector of image matrices (after using imread) so I can index and access the matrix corresponding to that image. Is this possible? How to do it?

采纳的回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2019-10-21
Set the current directory on the respective folder (Image Folder)
Steps:
  1. Call the images one by one
  2. Save images in Cell Array
list=dir('*.jpg');
image_data=cell(1,length(list));
%.............^ Note on format
for j=1:length(list)
image_file=imread(list(j).name);
image_data{j}=image_file;
end
Now you can acess any images by calling cell array image_data{1}, image_data{2},....so on
Hope it Helps!

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Convert Image Type 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by