人脸检测源码程序 - vb源码程序 - 谷速源码
下载频道> 资源分类> 编程语言> VB源码> 人脸检测源码程序

标题:人脸检测源码程序
分享到:

所属分类: VB源码 资源类型: 文件大小: 436.96 KB 上传时间: 2016-01-30 12:39:22 下载次数: 12 资源积分:1分 提 供 者: 源码共享 人脸检测源码程序
内容:
人脸检测源码程序,程序员在编程的过程中可以参考学习使用,希望对IT程序员有用,此源码程序简单易懂、方便阅读,有很好的学习价值!
%%%%% Reading of a RGB image
clc;
clear;
close all;
 
 
i=imread('face_database\acd.jpg');
I=rgb2gray(i);
BW=im2bw(I);
figure,imshow(BW)
 
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% minimisation of background portion
 
[n1 n2]=size(BW);
r=floor(n1/10);
c=floor(n2/10);
x1=1;x2=r;
s=r*c;
 
for i=1:10
    y1=1;y2=c;
    for j=1:10
        if (y2<=c | y2>=9*c) | (x1==1 | x2==r*10)
            loc=find(BW(x1:x2, y1:y2)==0);
            [o p]=size(loc);
            pr=o*100/s;
            if pr<=100
                BW(x1:x2, y1:y2)=0;
                r1=x1;r2=x2;s1=y1;s2=y2;
                pr1=0;
            end
            imshow(BW);
        end
            y1=y1+c;
            y2=y2+c;
    end
    
 x1=x1+r;
 x2=x2+r;
end
 figure,imshow(BW)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% detection of face object
 
L = bwlabel(BW,8);
BB  = regionprops(L, 'BoundingBox');
BB1=struct2cell(BB);
BB2=cell2mat(BB1);
 
[s1 s2]=size(BB2);
mx=0;
for k=3:4:s2-1
    p=BB2(1,k)*BB2(1,k+1);
    if p>mx & (BB2(1,k)/BB2(1,k+1))<1.8
        mx=p;
        j=k;
    end
end
figure,imshow(I);
hold on;
rectangle('Position',[BB2(1,j-2),BB2(1,j-1),BB2(1,j),BB2(1,j+1)],'EdgeColor','r' )
 

文件列表(点击上边下载按钮,如果是垃圾文件请在下面评价差评或者投诉):

人脸检测源码程序/
人脸检测源码程序/face_detection/
人脸检测源码程序/face_detection/face_detection/
人脸检测源码程序/face_detection/face_detection/face_database/
人脸检测源码程序/face_detection/face_detection/face_database/Paris2006_01.jpg
人脸检测源码程序/face_detection/face_detection/face_database/acd.jpg
人脸检测源码程序/face_detection/face_detection/face_database/arjun3.jpg
人脸检测源码程序/face_detection/face_detection/face_database/face2.jpg
人脸检测源码程序/face_detection/face_detection/face_database/face3.jpg
人脸检测源码程序/face_detection/face_detection/face_database/face4.jpg
人脸检测源码程序/face_detection/face_detection/face_database/face5.jpg
人脸检测源码程序/face_detection/face_detection/face_database/face7.jpg
人脸检测源码程序/face_detection/face_detection/face_database/face8.jpg
人脸检测源码程序/face_detection/face_detection/face_database/priyanshu.jpg
人脸检测源码程序/face_detection/face_detection/face_database/shiney.jpg
人脸检测源码程序/face_detection/face_detection/face_database/white4.jpg
人脸检测源码程序/face_detection/face_detection/facedetection.m

关键词: 人脸 源码 程序

编程语言下载排行

Top_arrow
回到顶部
联系方式| 版权声明| 招聘信息| 广告服务| 银行汇款| 法律顾问| 兼职技术| 付款方式| 关于我们|
网站客服网站客服 程序员兼职招聘 程序员兼职招聘
沪ICP备19040327号-3
公安备案号:沪公网安备 31011802003874号
库纳格流体控制系统(上海)有限公司 版权所有
Copyright © 1999-2014, GUSUCODE.COM, All Rights Reserved