How I can store all images name in an excel sheet?
2 views (last 30 days)
Show older comments
My folder consisting of multiple binary images. I want to store their names in an excel sheet along with all their extracted features.
0 Comments
Answers (1)
Image Analyst
on 5 May 2018
Try this:
fileInfo = dir('*.PNG');
ca = struct2cell(fileInfo)
baseFileNames = ca(1,:)'
xlswrite(excelFullFileName, baseFileNames);
8 Comments
See Also
Categories
Find more on Convert Image Type in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!