资源简介
实现人脸灰度积分投影并绘制积分投影图,matlab实现
代码片段和文件信息
%Author: An aged donkey pulling the mill
function Gray_Proj(I) % I: The name of image
A=imread(I);
m=0;
n=0;
[mn]= size(A);
Hproj=zeros(m1);
Vproj=zeros(1n);
for h=1:m
Hproj(h) = sum(A(h:));
end;
hf=figure(‘Numbertitle‘‘off‘‘name‘‘Horizontal Pjoection of A Gray Image‘);
plot(Hproj);
for v=1:n
Vproj(v) = sum(A(:v));
end;
vf=figure(‘Numbertitle‘‘off‘‘name‘‘Vertical Pjoection of A Gray Image‘);
plot(Vproj);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 459 2009-05-26 10:58 Gray_Proj.m
----------- --------- ---------- ----- ----
459 1
- 上一篇:Matlab-瑞利波模拟程序
- 下一篇:看涨期权定价的蒙特卡洛模拟程序
相关资源
- MATLAB实现编码和译码
- PHD滤波的MATLAB实现
- 官方PSNR和SSIM---matlab实现
- DES程序的matlab实现代码
- EM算法的matlab实现
- 低通抽样定理 matlab实现
- 用matlab实现角点检测源代码
- MATLAB实现Canny图像边缘检测
- 基于Lucas–Kanade算法的光流估计MATLA
- matlab实现模式识别的聚类分类算法
- matlab实现graphcut算法
- matlab实现 中值滤波去除基线漂移
- matlab实现了图像通信中的全搜索算法
- bp算法 matlab实现 图像分类
- matlab实现的粒子群动态寻路算法
- MATLAB实现人体识别
- 2DPSK的matlab实现
- matlab实现动态规划
- 基于Matlab实现的DES加密
- matlab实现三维重建
- matlab实现画最小外接矩形
- 云发生器模型的matlab实现
- 用matlab实现基于灰度的阈值分割算法
- 字符识别matlab实现
- matlab实现kd_tree
- 基于二维DCT的自适应水印算法matlab实
- rls算法自适应均衡器matlab实现
- Matlab实现LSB算法源代码 有窗口 可添加
- MATLAB实现的LSBMLSB Matching算法含界面和
- EM算法matlab实现
评论
共有 条评论