using System; using System.Collections.Generic; using System.Text; using System.ComponentModel; using System.Data; using System.Drawing; using System.Windows.Forms; using System.Runtime.InteropServices; namespace DS40XXSDK { #region enum /// /// 板卡
数字图像处理灰度值统计教学程序
clc;N=255;
I=imread('lena.bmp');%读取图像
[Hight Width]=size(I);%获取图像高度、宽度,单位象素
sum_pixels=Hight*Width;%总的象素数
count=zeros(1,256);%各计数值清零
new_count=zeros(1,256);%新的计数值清零
for i=1:Hight %以下嵌套循环计算各灰度值出现个数
for j=1:Width
f