资源简介

非常经典的MATLAB人脸识别程序(可显示相似度)

资源截图

代码片段和文件信息

I=imread(‘C:\1302101001.bmp‘);
subplot(231)imshow(I)
title(‘(a)输入图象‘);
subplot(232)imhist(I)
title(‘(b)输入图象的直方图‘)
axis([0 255 0 1000])
h=imhist(I);
h1=h(1:10:256);
x=0:10:255;
subplot(233)bar(xh1‘b‘)
title(‘(c)直方图的条形图‘)
axis([0 255 0 1000])
subplot(234)stem(xh1‘.‘)
title(‘(d)直方图的杆状图‘)
axis([0 255 0 1000])
subplot(235)stem(xh1)
title(‘(e)直方图由点连成的图‘)
axis([0 255 0 1000])

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        291  2009-11-26 09:45  mymatlab\Image.asv

     文件        445  2009-11-26 10:27  mymatlab\Image.m

     目录          0  2009-11-26 09:45  mymatlab

----------- ---------  ---------- -----  ----

                  736                    3


评论

共有 条评论