필터 지우기
필터 지우기

how saved all Images as Vector in Excel file?

조회 수: 2 (최근 30일)
Furat Alobaidy
Furat Alobaidy 2020년 10월 31일
댓글: Furat Alobaidy 2020년 11월 11일
Hi i need save more than 128 images into excel file after convert each image into vector ? i did these steps , but how can do for all other images inside the folder pleaase ?
digitDatasetPath = fullfile('C:\...\Resized dataset');
imds = imageDatastore(digitDatasetPath, ...
'IncludeSubfolders',true,'LabelSource','foldernames');
for i=1:128 % totall images in the folder 128 images
img=readimage(imds,i);
ImgVector = img(:);
img3=im2double(img);
ImgVector = img3(:);
xlswrite('iVECTOR.xlsx',ImgVector);
end
image size 28*28
Name Size Bytes Class
img 28x28 784 uint8
the results show me in Excel file just for one image :
ImgVector 784*1 double
i need : ImgVector 784*128 double ????

답변 (1개)

Anmol Dhiman
Anmol Dhiman 2020년 11월 9일
Hi Furat,
As suggested in the xlswrite, use writematrix to save the images in excel sheet. Create the matrix for all 128 images first and then at once write all to excel sheet.
Regards,
Anmol Dhiman

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

태그

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by