当我运行faceRecognizer的predict(src)函数时,它只返回一个int,而不是int和double。
使用help()会抛出这个:
有关内置函数的帮助预测:
predict(...) method of cv2.face_BasicFaceRecognizer instance
predict(src) -> retval or predict(src) -> label, confidence or predict(src, collector[, state]) -> None
我正在使用的代码是:
nbr_predicted, conf = recognizer.predict(imgp)
答案 0 :(得分:1)