首页 > 解决方案 > Python OpenCV - Eigenfaces 人脸识别

问题描述

我正在尝试使用 Python 和 OpenCV 创建简单的 Eigenfaces 人脸识别应用程序。不幸的是,当我尝试玩应用程序时,我得到了 result: (-1, '\n', 1.7976931348623157e+308),其中 -1 代表 not found 和 confidence... 相当高...

是否有可能由某人提供最基本的 OpenCV 特征脸实现?

这是我解决问题的方法。我使用 Python2,正如官方文档中所建议的那样(由于 P3 的一些问题)。

import cv2 as cv
import numpy as np
import os

num_components = 10
threshold = 10.0

faceRecognizer = cv.face_EigenFaceRecognizer.create(num_components, threshold)
images = []
labels = []
textLabels = ["Person1", "Person2", "Person3"]

destinedIm = cv.imread("images/set1/1.jpg", cv.IMREAD_GRAYSCALE)
destinedSize = destinedIm.shape

#Person1
img = cv.imread("images/set1/1.jpg", cv.IMREAD_GRAYSCALE)
imResized = cv.resize(img, destinedSize)
images.append(imResized)
labels.append(0)

#In similar way I read total 8 images of set1 and 6 images of set2 (2 different people, with label 0 and 1 respectively)

cv.imwrite("images/set2/resized.jpg", imResized) #this doesn't work

numpyImages = np.array(images)
numpyLabels = np.array(labels)
# cv.face_FaceRecognizer.train(self=faceRecognizer, src=images, labels=labels)
faceRecognizer.train(src=images, labels=numpyLabels)

testImage = cv.imread("images/set1/testIm.jpg", cv.IMREAD_GRAYSCALE)
# cv.face_FaceRecognizer.predict()
resultLabel, resultConfidence = faceRecognizer.predict(testImage)

print (resultLabel, "\n" ,resultConfidence)

testImage 是另一个带有 label = 0 的人的图像;

标签: pythonpython-2.7opencv

解决方案


我会看看 testImage 的大小。此外,我使用了与您使用的不同的尺寸调整方法并使其正常工作。

    face_resized = cv2.resize(img, (299, 299))

推荐阅读