我正在使用一个面部识别系统,您可以在其中输入已知面部的文件夹,并在另一个文件夹中找到它们的图片。我使用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()
我如何存储它们,以便每个编码的真值都不同?
好的,我把if results[0] == True:
换成了if results[0] is True
。
正如@roganjosh指出的那样,这是一个逻辑错误。抱歉这个愚蠢的问题。