clear all
clc
close all
%选择样本库和测试库的文件夹,选择文件夹及点击确定,不要进入到文件夹里面的子文件
TrainDatabasePath = uigetdir(strcat(matlabroot,'\work'), '选择训练人脸库' );
TestDatabasePath = uigetdir(strcat(matlabroot,'\work'), '选择测试人脸库');
mainfc;
%读取人脸库的路径,只能1-3
prompt = {'输入库内测试人脸数字代表1-3'};
dlg_title = '人脸识别系统';
num_lines= 1;
def = {'1'};
TestImage = inputdlg(prompt,dlg_title,num_lines,def);
TestImage = strcat(TestDatabasePath,'\',char(TestImage),'.jpg');
im = imread(TestImage);%读取测试图片
T = facebase(TrainDatabasePath);%创建人脸数据库,人脸图片降维
[m, A, Eigenfaces,D] = pingjunlian(T);%求平均脸
%识别
OutputName = shibie(TestImage, m, A, Eigenfaces);%识别,调用shibie.m的子函数
%%%将识别到的数字,连成路径,显示出来,比如1,连接成TrainDatabasePath这个文件夹里面的1.jpg
SelectedImage = strcat(TrainDatabasePath,'\',OutputName);
SelectedImage = imread(SelectedImage);
figure;
subplot(1,2,1);imshow(im);
title('测试人脸');
subplot(1,2,2);imshow(SelectedImage);
title('库内匹配人脸');
%输出识别人脸的数字代号
str = strcat('Matched image is : ',OutputName);
disp(str)
MATLAB管家matlab674
- 粉丝: 1641
- 资源: 282
最新资源
- 数据库课程设计-仓库管理系统中文最新版本
- 技术资料分享TF卡资料很好的技术资料.zip
- 技术资料分享TF介绍很好的技术资料.zip
- 10、安徽省大学生学科和技能竞赛A、B类项目列表(2019年版).xlsx
- 9、教育主管部门公布学科竞赛(2015版)-方喻飞
- C语言-leetcode题解之83-remove-duplicates-from-sorted-list.c
- C语言-leetcode题解之79-word-search.c
- C语言-leetcode题解之78-subsets.c
- C语言-leetcode题解之75-sort-colors.c
- C语言-leetcode题解之74-search-a-2d-matrix.c
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈