checkdata.m
来自「利用matlab编写的完整的人脸识别程序」· M 代码 · 共 24 行
M
24 行
%Checking the image before adding to database.
%Checks if the image is selected or not
clc
h = waitbar(0,'CHECKING.....');
for i=1:1450,
waitbar(i/100)
end
close(h)
if exist('img')
dataaddtest
else
h = waitbar(0,'No image has been selected Please Wait.....');
for i=1:3450,
waitbar(i/100)
end
close(h)
bdrfacerec
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?