cv2.rectangle--TypeError: an integer is required (got type tuple)

在图片上框出人脸,出现了下面的错误:

cv2.rectangle(img, (x, y), (x + w, y + h), (0, 255, 0), 2)
TypeError: an integer is required (got type tuple)

以前没有遇到过,在stackoverflow上找到了解释,是PIL.Image读出来的图像不能使用cv2的原因。
在此留下翻译的解释:
cv2模块用来处理numpy arrays的图像,而不是PIL.Image的实例。因为cv2.rectangle和Image类型都是完全用编译代码实现的,所以回溯对于理解出了什么问题并没有那么大帮助。在引擎盖下,本机cv2.rectangle()代码试图访问图像对象上需要整数,但cv2.rectangle()传入元组的内容,因为它希望与numpy arrays交互。
解决方法:
1)img = cv2.imread(imgpath)
2)转换PIL.Image为numpy.arrays
nparray = np.array(img)
另附:numpy array 转化为PIL.Image
img = Image.fromarray(nparray)

你可能感兴趣的:(opencv)