Встроенная функция или метод "объект" не имеет атрибута "поезд"
Я пытаюсь создать код распознавания лиц, используя OpenCV на моем Raspberry Pi 4 с последней ОС Raspbian Buster. Я успешно создал набор данных для того же, но с ошибкой атрибута при обучении набора данных.
Я попытался установить opencv-contrib-python, но он говорит, что не может найти версию, которая удовлетворяет требованию. Моя версия пипа актуальна
import cv2
import numpy as np
from PIL import Image
import os
# Path for face image database
path = 'dataset'
recognizer = cv2.face.LBPHFaceRecognizer_create()
detector = cv2.CascadeClassifier("haarcascade_frontalface_default.xml");
# function to get the images and label data
def getImagesAndLabels(path):
imagePaths = [os.path.join(path,f) for f in os.listdir(path)]
faceSamples=[]
ids = []
for imagePath in imagePaths:
PIL_img = Image.open(imagePath).convert('L') # convert it to grayscale
img_numpy = np.array(PIL_img,'uint8')
id = int(os.path.split(imagePath)[-1].split(".")[1])
faces = detector.detectMultiScale(img_numpy)
for (x,y,w,h) in faces:
faceSamples.append(img_numpy[y:y+h,x:x+w])
ids.append(id)
return faceSamples,ids
print ("\n [INFO] Training faces. It will take a few seconds. Wait ...")
faces,ids = getImagesAndLabels(path)
recognizer.train(faces, np.array(ids))
# Save the model into trainer/trainer.yml
recognizer.write('trainer/trainer.yml') # recognizer.save() worked on Mac, but not on Pi
# Print the numer of faces trained and end program
print("\n [INFO] {0} faces trained. Exiting Program".format(len(np.unique(ids))))
Оболочка показывает следующую ошибку
[INFO] Training faces. It will take a few seconds. Wait ...
Traceback (most recent call last):
File "/home/pi/Face Detection/facetraining.py", line 25, in <module>
recognizer.train(faces, np.array(ids))
AttributeError: 'builtin_function_or_method' object has no attribute 'train'