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!

39 vues (au cours des 30 derniers jours)
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 commentaires
Esther Mead
Esther Mead le 21 Avr 2019
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!

Connectez-vous pour commenter.

Réponses (3)

Guillaume
Guillaume le 23 Avr 2019
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 le 21 Avr 2019
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 commentaire
Kurt
Kurt le 11 Déc 2023
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

Connectez-vous pour commenter.


Image Analyst
Image Analyst le 21 Avr 2019
See the FAQ for code samples.
  8 commentaires
Rik
Rik le 23 Avr 2019
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 le 23 Avr 2019
Use the other FAQ code -- the one that uses dir() to get the filenames.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Convert Image Type dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by