Python - cv2.groupRectangles不返回任何内容

时间:2016-11-20 16:59:40

标签: python opencv

我的代码定义如下,我的口不是空的:

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时,我得到()()()()()()... 有人可以帮帮我吗?当我单独作为论据通过口?我收到错误,这就是我将其转换为列表的原因。

0 个答案:

没有答案