存储数据的其他方式比面部编码的数组

问题描述 投票:3回答:1

我正在使用一个面部识别系统,您可以在其中输入已知面部的文件夹,并在另一个文件夹中找到它们的图片。我使用face_recognition作为fr,库,os和shutil的副本作为c。这是代码。

if results[0] == True:
    c(file_name, "/home/deeplearning/Pictures" + end_name)

我收到错误:ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()

我如何存储它们,以便每个编码的真值都不同?

python python-3.x deep-learning face-recognition
1个回答
1
投票

好的,我把if results[0] == True:换成了if results[0] is True

正如@roganjosh指出的那样,这是一个逻辑错误。抱歉这个愚蠢的问题。

© www.soinside.com 2019 - 2024. All rights reserved.