How to loop through files that I have added to path?
3 次查看(过去 30 天)
显示 更早的评论
Hi,
I have a folder that I added to matlab path. the folder contains 2400 .tif files - I need to loop through each image, do calculations on the image and then go to the next image to do same calculation. i am new to the matlab so I need the help. I will greatly appreciate the help. Thank you in advanced. Please help me.
thank you. cocopuffs
0 个评论
采纳的回答
Azzi Abdelmalek
2014-7-23
pat='E:' % Your folder
fil=fullfile(pat,'*.tif')
d=dir(fil)
for k=1:numel(d)
filename=fullfile(pat,d(k).name)
% do
end
2 个评论
Azzi Abdelmalek
2014-7-23
pat='your_folder'
fil=fullfile(pat,'image*.tif')
d=dir(fil)
for k=1:numel(d)
filename=fullfile(pat,d(k).name)
% do
end
更多回答(0 个)
另请参阅
类别
在 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!