我是OpenCV人脸检测器的新手。人脸检测工作正常,但我试图使用生成的矩形在框架周围制作框架并剪切它以将面部保存在新的存档中。我一直在使用getSubRect和“haarcascade_frontalface_default”(左,上,宽,高)返回的值。假设GetSubRect的参数是(图像,(左,上,右,下)但它不起作用,因为结果图像不会使面部居中。我的错误是什么?
代码是下一个:
import sys
import cv
imcolor = cv.LoadImage('C:\\Temp\\camera_test2.jpg') # input image
# loading the classifier
haarFace = cv.Load('c:\opencv\data\haarcascades\haarcascade_frontalface_default.xml')
# running the classifier
storage = cv.CreateMemStorage()
detectedFace = cv.HaarDetectObjects(imcolor, haarFace, storage, 1.1)
if detectedFace:
arg1 = detectedFace[0][0][0]
arg2 = detectedFace[0][0][1]
arg3 = detectedFace[0][0][2]
arg4 = detectedFace[0][0][3]
Izq = arg1 - arg3/10
Sup = arg2 - arg4/6
Der = arg1 + arg3 #+ (arg3/10)
Inf = arg2 + arg4 +(arg4/6)
print detectedFace
print Izq
print Sup
print Der
print Inf
imcolor2 = cv.GetSubRect(imcolor,(Izq, Sup, Der, Inf))
cv.SaveImage('C:\\temp\\test_1.JPG', imcolor2)
cv.WaitKey()
答案 0 :(得分:0)
cv.GetSubRect
期待(x, y, width, height)
:
for face, neighbors in detectedFace:
im_face = cv.GetSubRect(imcolor, face)
另请参阅documentation和OpenCV Cookbook。
那就是说,为什么不使用cv2
?