Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Plain Text by hellyeah ( 17 years ago )
function [x] = listing(y)
data_dir = '/home/benebioglu/cs-4year/comp403/project-midterm/subset1/'
listing = dir([data_dir '*.png']);
for k = 3:length(listing)
y = (mean(imread([data_dir listing(k).name])));
end
end
Revise this Paste