i need to convert a folder of 200 .jpg images to .mat (to create 200 separate .mat files). i know there should be an easy matlab for loop to do this but I need help (newbie). thanks!

조회 수: 38 (최근 30일)
i need to convert a folder of 200 .jpg images to .mat (to create 200 separate .mat files). i know there should be an easy matlab for loop to do this but I need help (newbie). thanks!
  댓글 수: 2
Esther Mead
Esther Mead 2019년 4월 21일
sorry, put my response in wrong place..
my reply:
thanks for your reply. oh man i've tried to look around for an answer for about four or more hours. so far, i've tried opening the matlab image batch processor, importing all of my jpg files and tried to apply a function to them all.
im = imread(‘file_name.jpg’);
save(‘file_name.mat’, ‘im’);
where i replace the above with the actual name of the individual filename, e.g., '0000.jpg' and '0000.mat'...
but, it only worked for the first file. because i don't know how to write the function to find the name of the file and set it to the same name but just convert from jpg to mat. i hope i'm making sense. again i'm new. thanks again!

댓글을 달려면 로그인하십시오.

답변 (3개)

Guillaume
Guillaume 2019년 4월 23일
folder = 'C:\somewhere\somefolder';
filelist = dir(fullfile(folder, '*.jpg')); %get list of all jpg files in the folder
matnames = regexprep({filelist.name}, '\.jpg$', '.mat'); %replace .jpg by .mat in all file names
for fileidx = 1:numel(filelist)
img = imread(fullfile(folder, filelist(fileidx).name)); %read image
save(matnames{fileidx}, img); %save in respective mat file
end
As for saving in HDF5 format, it's unclear if you want one file per image or just one hdf5 file with a dataset per image. In any case, you wouldn't use save as you have written but h5create and h5write.

Rik
Rik 2019년 4월 21일
You're quite close. You were only missing the way to generate char arrays from a pattern. To do that you can use the sprintf function. You will find a small example below. If you don't understand the syntax I encourage you to read the documentation. Matlab has excelent documentation with many examples.
for n=1:200
im = imread(sprintf('%04d.jpg',n));
save(sprintf('%04d.mat',n),'im');
end
  댓글 수: 1
Kurt
Kurt 2023년 12월 11일
This conversion does not create the .mat structure that I am looking for. For example, if I feed it a 1024x2048x3 jpg file, I get a .mat file with an img structure that is 1024x2048x3 of class uint8.
As an example, the topo60c .mat file has this structure:
Name Size Bytes Class
description 1x1 342 string
topo60c 180x360 518400 double
topo60cR 1x1 128 map.rastereff.GeographicCellsReference

댓글을 달려면 로그인하십시오.


Image Analyst
Image Analyst 2019년 4월 21일
See the FAQ for code samples.
  댓글 수: 8
Rik
Rik 2019년 4월 23일
Apparently the file 00000001.jpg doesn't exist, so the underlying assumption of my code isn't true. You don't need the batch processor.
Did you make sure the current folder contains the files? Otherwise you will need to put the full path in your loader.
Also, the save function does not support saving a h5 file.
Image Analyst
Image Analyst 2019년 4월 23일
Use the other FAQ code -- the one that uses dir() to get the filenames.

댓글을 달려면 로그인하십시오.

카테고리

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