我的特征脸图像识别部分出现错误

时间:2019-04-05 17:00:57

标签: python algorithm opencv face-recognition

错误是:

  

“ id,置信度= identifier.predict(gray [y:y + h,x:x + w])cv2.error:   OpenCV(4.0.0)   C:\ projects \ opencv-python \ opencv_contrib \ modules \ face \ src \ eigen_faces.cpp:121:   错误:(-5:错误的参数)错误的输入图像尺寸。原因:培训和   测试图像必须大小相等!预期图片为12100   元素,但在函数'cv :: face :: Eigenfaces :: predict'中得到25281。“

我从LBPHFaceRecognizer修改了此代码,然后更改为EigenFaceRecognizer

import cv2
import numpy as np
import os 

recognizer = cv2.face.EigenFaceRecognizer_create()
recognizer.read('trainer/trainer.yml')
cascadePath = "haarcascade_frontalface_default.xml"
faceCascade = cv2.CascadeClassifier(cascadePath);

font = cv2.FONT_HERSHEY_SIMPLEX



#iniciate id counter
id = 0

# names related to ids: example ==> Marcelo: id=1,  etc
names = ['None', 'sabri', 'Naim' , 'Acap'] 

# Initialize and start realtime video capture
 cam = cv2.VideoCapture(0)
 cam.set(3, 640) # set video widht
 cam.set(4, 480) # set video height

# Define min window size to be recognized as a face
minW = 0.1*cam.get(3)
minH = 0.1*cam.get(4)

while True:

ret, img =cam.read()
img = cv2.flip(img, 1) # Flip vertically

gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)

faces = faceCascade.detectMultiScale( 
    gray,
    scaleFactor = 1.2,
    minNeighbors = 5,
    minSize = (int(minW), int(minH)),
   )

for(x,y,w,h) in faces:

    cv2.rectangle(img, (x,y), (x+w,y+h), (0,255,0), 2)

    id, confidence = recognizer.predict(gray[y:y+h,x:x+w])

    # Check if confidence is less them 100 ==> "0" is perfect match 
    if (confidence < 100):
        id = names[id]
        confidence = "  {0}%".format(round(100 - confidence))
    else:
        id = "unknown"
        confidence = "  {0}%".format(round(100 - confidence))

    cv2.putText(img, str(id), (x+5,y-5), font, 1, (255,255,255), 2)
    cv2.putText(img, str(confidence), (x+5,y+h-5), font, 1, (255,255,0), 1)  

cv2.imshow('camera',img) 

k = cv2.waitKey(10) & 0xff # Press 'ESC' for exiting video
if k == 27:
    break

# Do a bit of cleanup
print("\n [INFO] Exiting Program and cleanup stuff")
cam.release()
cv2.destroyAllWindows()

2 个答案:

答案 0 :(得分:0)

从本质上讲,训练图像的大小与测试图像的大小不同。在代码中,您已将输入设置为480 * 640,并且在喂入预测模型之前尚未调整其大小。如果您的训练尺寸为480 * 640,则测试尺寸应为480 * 640。您可以使用cv2.resize()来调整测试图像或训练图像或两者的大小。

答案 1 :(得分:0)

这是我的代码培训

import cv2
import numpy as np
from PIL import Image
import os

# Path for face image database
path = 'dataset'

recognizer = cv2.face.EigenFaceRecognizer_create()
detector = cv2.CascadeClassifier("haarcascade_frontalface_default.xml");

# function to get the images and label data
def getImagesAndLabels(path):

    height_d, width_d = 480, 640  # Declare your own width and height

    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(cv2.resize(img_numpy[y:y+h,x:x+w], (height_d, width_d )))
        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))))
相关问题