⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 imagehist.m

📁 matlab处理图像的一些基本方法。其中有一部分mex程序需要安装编译
💻 M
字号:
function imagehist%IMAGEHISH  Display the image Histogram%% Copyright (c) 1995 by Claudio Rivetti and Mark Young% claudio@alice.uoregon.edu,    mark@alice.uoregon.edu%global Handleimg  if ~isimage  setviewmode('TOPVIEW');  showimage;endcmap=colormap;[flag, fig]=figflag('Image Histogram',0);if ~flag  fig=figure('position', [600 300 560 420], 'NumberTitle', 'off', 'name', 'Image Histogram');else  set(fig, 'nextplot', 'replace');endc=get(Handleimg, 'cdata');cmin=min(min(c));if cmin<1  c=c-cmin+1;endj=find(c>size(cmap,1));if ~isempty(j)  c(j)=c(j)*0 + size(cmap,1);endimhist(c, cmap);zoom onset(fig,  'nextplot', 'new');return  

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -