资源简介
基于模板匹配的人脸检测-教程-matlab代码,包括m文件,图片
代码片段和文件信息
%**************************************************************************
%Following function determines whether the region aspect ratio is within
%range of being a face region
function [aspectBW]=aspect_test(eulerBW)
[mn]=size(eulerBW);
%fill holes in image
filledBW = imfill(eulerBW‘holes‘);
%Apply Dilation
se1 = strel(‘disk‘3);
growBW=zeros(mn);
growBW=imdilate(filledBWse1);
%label as binary
[labelsnum] = bwlabel(growBW8);
[aspect_ratio]=get_aspect(labels);
% %take regions which has aspect ratio within range
region_index = find(aspect_ratio<=3.5 & aspect_ratio>=1);
aspectBW=zeros(mn);
%make new binary image only with regions which pass euler test
for i=1:length(region_index)
% Compute the coordinates for this region.
[xy] = find(bwlabel(filledBW) == region_index(i));
% Get an image that only has this region the rest is black
bwsegment = bwselect(filledBWyx8);
aspectBW=aspectBW+bwsegment;
end
subplot(4310);
imshow(aspectBW)
title({‘After Aspect Ratio Test‘;[‘(‘num2str(length(region_index))‘ regions)‘]})
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 26994 2013-04-15 23:36 matlab tutorial detectface [AIT Computer Vision Wiki].htm
文件 58 2013-04-16 19:30 url.txt
文件 1091 2013-04-15 23:52 detection\aspect_test.m
文件 289 2013-04-15 23:53 detection\checklimit.m
文件 918 2013-04-15 23:52 detection\euler_test.m
文件 1090 2013-04-15 23:54 detection\face_detection.m
文件 556 2013-04-15 23:53 detection\get_aspect.m
文件 625 2013-04-15 23:48 detection\get_crcb.m
文件 1139 2013-04-15 23:51 detection\get_likelyhood.m
文件 1281 2013-04-15 23:51 detection\label_regions.m
文件 1703 2013-04-15 23:49 detection\make_model.m
文件 463 2013-04-15 23:48 detection\plot_hist2d.m
文件 679 2007-07-16 13:16 detection\sampleset\1.JPG
文件 686 2007-07-16 14:57 detection\sampleset\10.JPG
文件 657 2007-07-16 15:23 detection\sampleset\11.JPG
文件 701 2007-07-16 15:27 detection\sampleset\12.JPG
文件 673 2007-07-30 13:29 detection\sampleset\13.jpg
文件 672 2007-07-16 13:17 detection\sampleset\2.JPG
文件 672 2007-07-16 13:17 detection\sampleset\3.JPG
文件 656 2007-07-16 13:30 detection\sampleset\4.JPG
文件 646 2007-07-16 13:35 detection\sampleset\5.JPG
文件 676 2007-07-16 13:46 detection\sampleset\6.JPG
文件 669 2007-07-16 14:07 detection\sampleset\7.JPG
文件 691 2007-08-02 09:36 detection\sampleset\8.JPG
文件 668 2007-07-16 14:53 detection\sampleset\9.JPG
文件 12900 2007-08-02 09:54 detection\sampleset\sampleset.rar
..A.SH. 27136 2007-08-02 09:38 detection\sampleset\Thumbs.db
文件 1103 2013-04-15 23:51 detection\segment_adaptive.m
文件 2982 2013-04-16 19:15 detection\template.jpg
文件 4226 2013-04-15 23:53 detection\template_test.m
............此处省略41个文件信息
相关资源
- 基于二叉树和最优截断的图像压缩算
- MATLAB实现多图融合
- retinex matlab实现带测试图
- 图像处理手动自动分割 matlab程序
- 高斯混合模型提取背景matlabcode
- Matlab 与 Excel数据统计与分析方法
- 2019年吉林省大学生数学建模_CBA 球队
- MMC_仿真模型
- rs编解码(matlab程序)
- MATLAB基于fox-li迭代算法的激光谐振腔
- matlab车牌自动识别程序字符模板+程序
- MATLAB从入门到精通PDF
- Matlab人脸识别-PCA算法
- INS_GPS组合导航matlab仿真程序
- 车牌识别matlab95751
- 可视密码的matlab实现,附带展示ppt
- dft的matlab实现
- MATLAB在动态经济学中的应用
- SVM_light工具箱matlab
- 利用MATLAB进行音频特征提取
- 基于DTW的matlab语音识别
- matpower3.2电力系统潮流计算MATLAB文件
- 蒙特卡罗方法与MATLAB仿真
- 多径信道和多普勒频移分析 matlab程
- 最优化方法及MATLAB的实现
- fast角点检测算法for matlab
- 优秀数字信号处理课程设计 matlab滤波
- Matlab2012经典超强教程
- 基于CMM三坐标测量机的形状误差测量
- Matlab时频分析工具箱及函数应用说明
评论
共有 条评论