• 大小: 1.74MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-27
  • 语言: Matlab
  • 标签: 人脸检测  

资源简介

本资源是在Matlab平台上实现模板匹配,核心代码包括肤色分割以及模板匹配,肤色分割是通过在YCrCb色彩空间下进行肤色建模,从而实现肤色分割,在肤色分割的基础上实现模板匹配,从而实现人脸检测

资源截图

代码片段和文件信息

%**************************************************************************
%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)‘]})

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

     文件        679  2007-07-16 13:16  sampleset\1.JPG

     文件        686  2007-07-16 14:57  sampleset\10.JPG

     文件        657  2007-07-16 15:23  sampleset\11.JPG

     文件        701  2007-07-16 15:27  sampleset\12.JPG

     文件        673  2007-07-30 13:29  sampleset\13.jpg

     文件        672  2007-07-16 13:17  sampleset\2.JPG

     文件        672  2007-07-16 13:17  sampleset\3.JPG

     文件        656  2007-07-16 13:30  sampleset\4.JPG

     文件        646  2007-07-16 13:35  sampleset\5.JPG

     文件        676  2007-07-16 13:46  sampleset\6.JPG

     文件        669  2007-07-16 14:07  sampleset\7.JPG

     文件        691  2007-08-02 09:36  sampleset\8.JPG

     文件        668  2007-07-16 14:53  sampleset\9.JPG

    ..A.SH.     27136  2007-08-02 09:38  sampleset\Thumbs.db

     目录          0  2007-08-02 09:37  sampleset

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

                35882                    15


评论

共有 条评论