我的代码定义如下,我的口不是空的:
mouth=mouthCascade.detectMultiScale(roiColor1,1.3, 5)
rectList, weights = cv2.groupRectangles(np.array(mouth).tolist(), 1, 0.2)
print rectList
for (mx,my,mw,mh) in rectList:
cv2.rectangle(img, (mx,my), (mx+mw, my+mh), (0,45,55), 5)
但是当我打印rectList
时,我得到()()()()()()...
有人可以帮帮我吗?当我单独作为论据通过口?我收到错误,这就是我将其转换为列表的原因。