我正在尝试制作人脸识别安全系统。
我在Python中使用了Open CV。
我只能从视频中检测人脸,并将它们存储在本地硬盘中。
但是我想用compare来识别像这样的人
while faces in my databse:
if face="xyz":
face is right
if face is right:
person is xyz
这就是我要找的。
我正在做我的人脸检测和识别工作,我想实时检测人脸,
但是到了训练的时候,要花很长的时间来训练
数据有没有可能减少训练的时间数据谁都能帮上忙
我把这个问题解决了
“”“
def train(train_dir, model_save_path=None, n_neighbors=None, knn_algo='ball_tree', verbose=False):
X = []
y = []
# Loop through each person in the training set
for class_dir in tqdm(os.l