⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 datainfo.m

📁 利用matlab编写的完整的人脸识别程序
💻 M
字号:
% Displays how many faces stored in the facedatabase
clc
close all
clear('img');
if(exist('fdata.dat')==2)
    load('fdata.dat','-mat');
    
    disp(strcat('There are -->'   ,num2str(fnumber),' ID(s) at the database.'));
    
disp('press any key to continue')
pause
bdrfacerec
else
    disp('Database is empty');
    disp('press any key to continue')
    pause
    bdrfacerec

end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -