imdisp.m
上传用户:zlding2008
上传日期:2013-05-13
资源大小:1914k
文件大小:0k
源码类别:

2D图形编程

开发平台:

Matlab

  1. function imdisp(I)
  2. % imdisp(I) - scale the dynamic range of an image and display it.
  3. x = (0:255)./255;
  4. grey = [x;x;x]';
  5. minI = min(min(I));
  6. maxI = max(max(I));
  7. I = (I-minI)/(maxI-minI)*255;
  8. image(I);
  9. axis('square','off');
  10. colormap(grey);