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

生物技术

开发平台:

Matlab

  1. function img=showimg(vet, height, wide)
  2. % img=showimg(vet, height, wide)
  3. %
  4. % Function that shows the vector 'vet'
  5. % as an image of size height * wide.
  6. for col=1:wide,
  7.    for lin = 1:height,
  8.       img(lin, col) = vet((col-1)*height + lin);
  9.    end
  10. end
  11. % Histogram stretch of the image:
  12. minimum = min(min(img));
  13. img = img - minimum + 1;
  14. maximum = max(max(img));
  15. coef = 256/(maximum); 
  16. img = img*coef;
  17. % Ploting the image: 
  18. image(img); colormap(gray(256));
  19. return