extracting data from a cell (in cell the data are images) and i need to store them seperately
조회 수: 1 (최근 30일)
이전 댓글 표시
Poreddy ajaykumar reddy
2021년 9월 19일
답변: Harikrishnan Balachandran Nair
2021년 9월 22일
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
댓글 수: 0
채택된 답변
Image Analyst
2021년 9월 21일
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.
댓글 수: 0
추가 답변 (1개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!