extracting data from a cell (in cell the data are images) and i need to store them seperately

2 visualizaciones (últimos 30 días)
I need to extract the all the contents in a cell and i need to all the contents in a cell
first row in one folder
second row in oone folder
third row in one folder
fourth row in one folder

Respuesta aceptada

Image Analyst
Image Analyst el 21 de Sept. de 2021
You can do something like this:
[rows, columns] = size(EO)
for row = 1 : rows
folder = sprintf('Row %d', row);
if ~isfolder(folder)
mkdir(folder);
end
for col = 1 : columns
baseFileName = sprintf('Row %d, Column %d.png', row, col);
fullFileName = fullfile(folder, baseFileName);
imwrite(EO{row, col}, fullFileName);
end
end
Adapt as needed.

Más respuestas (1)

Harikrishnan Balachandran Nair
Harikrishnan Balachandran Nair el 22 de Sept. de 2021
Hi,
I understand that you are trying to store the images from each row in different folders.
You can use the 'mkdir' function in matlab to create a subfolder in the current folder , or in the specified parent folder.
For writing an image into a specified file , you can use the 'imwrite' function.

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by