How I can store all images name in an excel sheet?
2 次查看(过去 30 天)
显示 更早的评论
My folder consisting of multiple binary images. I want to store their names in an excel sheet along with all their extracted features.
0 个评论
回答(1 个)
Image Analyst
2018-5-5
Try this:
fileInfo = dir('*.PNG');
ca = struct2cell(fileInfo)
baseFileNames = ca(1,:)'
xlswrite(excelFullFileName, baseFileNames);
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Convert Image Type 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!