使用cv2.rectangle时报错 ‘thickness‘ is required to be an integer

这个错误是由于参数类型错误导致的.

def rectangle(img, pt1, pt2, color, thickness=None, lineType=None, shift=None)

其中pt1pt2必须是tuple, 不允许是list

另外, 这两个tuple里面必须是int.

你可能感兴趣的:(报错处理,图像处理,opencv)