loadpop.m
上传用户:lzb_9569
上传日期:2013-05-03
资源大小:5k
文件大小:0k
源码类别:

生物技术

开发平台:

Matlab

  1. function X = loadpop(fileformat)
  2. % X = makepop(fileformat)
  3. %
  4. % Function that creates the the population matrix X 
  5. % whre each collum is a image of the database.
  6. % The currend directory have to be the image database's directory
  7. d=0; 
  8. list=dir;
  9. for c = 3:length(list),
  10.    lname = length(list(c).name);
  11.    if list(c).name(lname-2:lname) == fileformat,
  12.       d=d+1;
  13.       [img,map] = imread(list(c).name,fileformat);
  14.       X(:,d) = img(:);
  15.    end
  16. end
  17. X=double(X);
  18. return