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

📄 imghist.m

📁 matlab图象增强代码集合。多个代码。英文。
💻 M
字号:
function ihist = imghist(img)
% Author: Javier Montoya (jmontoyaz@gmail.com).
%         http://www.lis.ic.unicamp.br/~jmontoya
%
% IMGHIST calculates the histogram of a given image.
% Input parameters:
%    img: image I (passed as a bidimensional matrix).
% Ouput parameters:
%    ihist: histogram.
%
% Usage:
%    I     = imread('tire.tif');
%    ihist = imghist(I);
%    figure; stem(ihist); title('Image Histogram');

   if exist('img', 'var') == 0
      error('Error: Specify an input image.');
   else
   ihist       = [];
   [rows,cols] = size(img);
   maxgval     = 255;
   ihist       = zeros(1,maxgval);
     for i=0:maxgval
      ihist(i+1) = sum(img(:)==i);
     end
  end

⌨️ 快捷键说明

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