How can i analyse all images from folder by using GUI?
Show older comments
Code i wrote so far: directory_name = uigetdir('c:\data\', 'Please select the directory') for i = 1 : length(directory_name) filename = directory_name(i); I = imread(filename); Intensity = mean(I(:)); xlswrite('views.xls', Intensity, '730', sprintf('C%d',i)) end
Accepted Answer
More Answers (0)
Categories
Find more on Convert Image Type in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!