答案 0 :(得分:1)
face_detect.py上的第26行 - 看起来它有你需要的尺寸......
# Draw a rectangle around the faces
for (x, y, w, h) in faces:
cv2.rectangle(image, (x, y), (x+w, y+h), (0, 255, 0), 2)
您需要将rectangle()
函数替换为要裁剪的逻辑。您应该能够将维度传递到numpy数组函数中以进行裁剪。这是使用硬编码维度在OpenCV中裁剪的一个示例......