How to store images and its labels in a struct array?
11 次查看(过去 30 天)
显示 更早的评论
I am doing Image classification task. I have total 500 folders and under each folder i have three image files as nifti file format. My first target here is store all the images in a single cell array (1*1500) in a simplest way. Next is to create a structure array together this original image files and the labels. Any help is appreciated!
Thanks
3 个评论
OCDER
2017-9-11
How about starting directly from a structure? Saves you from using a cell2struct command.
S(1:1500) = struct('Image', [], 'Label', '')
for j = 1:length(S)
S(j).Image = %Read the jth image
S(j).Label = 'some kind of label';
end
回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!