资源简介

基于神经网络的人脸识别/检测MATLAB模型,做好了一个GUI,先进行神经网络的训练,然后可以选择一张含有人脸的图片,即可以进行人脸识别/检测。

资源截图

代码片段和文件信息

% Version : 5.0
% Date : MAY / 18 / 2007
% Author  : Omid Bonakdar Sakhi

net = network;

net.numInputs = 1;
net.numlayers = 2;

net.biasConnect = [1;1];

net.inputConnect = [1 ;...
                    0 ];

net.layerConnect = [0 0 ;...
                    1 0 ];
                
net.outputConnect = [0 1];                
net.targetConnect = [0 1];

netInputs = ones (21602);
netInputs (1:21601)= -1;
net.inputs{1}.range = netInputs;

net.layers{1}.size = 100;
net.layers{2}.size = 1;

net.layers{1:2}.transferFcn = ‘tansig‘;
net.layers{1:2}.initFcn = ‘initnw‘;

net.initFcn = ‘initlay‘;
net.performFcn = ‘msereg‘;
net.trainFcn = ‘trainscg‘;

net = init(net)
save net net

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2011-09-12 20:45  Face Detection System\
     文件         710  2007-05-19 15:30  Face Detection System\createffnn.m
     文件         549  2007-05-19 11:15  Face Detection System\create_gabor.m
     文件         827  2007-05-19 11:10  Face Detection System\drawrec.m
     目录           0  2011-09-12 20:45  Face Detection System\face\
     文件         709  2001-03-23 13:11  Face Detection System\face\1.png
     文件         709  2001-03-14 06:54  Face Detection System\face\10.png
     文件         710  2001-03-14 06:54  Face Detection System\face\11.png
     文件         708  2001-03-14 06:54  Face Detection System\face\12.png
     文件         716  2001-03-14 06:54  Face Detection System\face\13.png
     文件         710  2001-03-14 06:54  Face Detection System\face\14.png
     文件         676  2001-03-14 06:54  Face Detection System\face\15.png
     文件         705  2001-03-22 10:26  Face Detection System\face\16.png
     文件         712  2001-03-22 10:26  Face Detection System\face\17.png
     文件         691  2001-03-22 10:26  Face Detection System\face\18.png
     文件         712  2001-03-22 10:26  Face Detection System\face\19.png
     文件         735  2001-03-14 06:54  Face Detection System\face\2.png
     文件         690  2001-03-22 10:26  Face Detection System\face\20.png
     文件         712  2001-03-22 10:26  Face Detection System\face\21.png
     文件         719  2001-03-22 10:26  Face Detection System\face\22.png
     文件         704  2001-03-22 10:26  Face Detection System\face\23.png
     文件         724  2001-03-22 10:26  Face Detection System\face\24.png
     文件         705  2001-03-22 10:26  Face Detection System\face\25.png
     文件         591  2006-04-18 22:27  Face Detection System\face\26.png
     文件         585  2006-04-18 22:27  Face Detection System\face\27.png
     文件         595  2006-04-18 22:29  Face Detection System\face\28.png
     文件         590  2006-04-18 22:31  Face Detection System\face\29.png
     文件         721  2001-03-14 06:54  Face Detection System\face\3.png
     文件         595  2006-04-18 22:32  Face Detection System\face\30.png
     文件         560  2006-04-18 22:33  Face Detection System\face\31.png
     文件         586  2006-04-18 22:34  Face Detection System\face\32.png
............此处省略118个文件信息

评论

共有 条评论