How I can store all images name in an excel sheet?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
My folder consisting of multiple binary images. I want to store their names in an excel sheet along with all their extracted features.
0 Kommentare
Antworten (1)
Image Analyst
am 5 Mai 2018
Try this:
fileInfo = dir('*.PNG');
ca = struct2cell(fileInfo)
baseFileNames = ca(1,:)'
xlswrite(excelFullFileName, baseFileNames);
8 Kommentare
Siehe auch
Kategorien
Mehr zu Convert Image Type finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!