cv2.rectangle画矩形方框未显示某边解决

在用python的OpenCV画矩阵方框,代码是这样的时候,有某一边没画出来:
cv2.rectangle(img, (int(x1), int(y1)), (int(x2), int(y2)), (0, 0, 255), 2)

检查后发现是画笔的宽度太细了,改成这样就好了:
cv2.rectangle(img, (int(x1), int(y1)), (int(x2), int(y2)), (0, 0, 255), 4)

你可能感兴趣的:(opencv,python,计算机视觉)