资源简介
基于神经网络的人脸识别/检测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个文件信息
相关资源
- model facenet模型
- 用于人脸识别的NMF分解程序(用MATL
- PCA人脸识别代码MATLAB可直接运行
- ICA 独立成分分析法写得人脸识别程序
- MATLAB多人人脸识别系统.zip
- 人脸识别经典算法PCA和2DPCA 的matlab版
- 基于SVM的人脸识别代码_matlab
- 稀疏表示的人脸识别完整MATLAB可运行
- 人脸检测源码 face detection source code
- pca人脸识别算法
- 基于稀疏表示的人脸识别Matlab程序
- 基于PCA主成分分析的人脸识别
- oldpac.rar
- 基于ORL库和PCA方法的人脸识别系统m
- 基于神经网络的人脸识别_检测MATLAB模
- 人脸识别 MATLAB代码
- BP神经网络的人脸识别matlab代码
- PCA人脸降维与单幅图像识别
- 基于MATLAB 的人脸识别
- 基于PCA与KPCA的SVM人脸识别程序含数据
- 基于PCA与SVM的人脸识别matlab代码
- 基于CNN的人脸识别matlab版本.rar
- LDA人脸识别matlab code
- matlab手写卷积神经网络人脸识别
- PCA最近邻分类方法人脸识别
- PCA人脸识别matlab代码
-
人脸数据集 Extended Yale B Databa
seEYa - 基于MATLAB的人脸识别源码
- 人脸识别原理与实战:以MATLAB为工具
- LDA人脸识别MATLAB含k近邻算法
评论
共有 条评论