如何在OpenCV中的点之间绘制线条?

时间:2018-06-03 22:25:39

标签: python opencv opencv3.0 opencv-contour

我有一组元组:

a = [(375, 193)
(364, 113)
(277, 20)
(271, 16)
(52, 106)
(133, 266)
(289, 296)
(372, 282)]

如何在OpenCV中的点之间绘制线条?

这是我的代码无效:

for index, item in enumerate(a): 
    print (item[index]) 
    #cv2.line(image, item[index], item[index + 1], [0, 255, 0], 2) 

2 个答案:

答案 0 :(得分:3)

使用绘制轮廓,您可以一次绘制形状。

img = np.zeros([512, 512, 3],np.uint8)
a = np.array([(375, 193), (364, 113), (277, 20), (271, 16), (52, 106), (133, 266), (289, 296), (372, 282)])
cv2.drawContours(img, [a], 0, (255,255,255), 2)

如果您不想关闭图像并希望继续如何开始:

image = np.zeros([512, 512, 3],np.uint8)
pointsInside = [(375, 193), (364, 113), (277, 20), (271, 16), (52, 106), (133, 266), (289, 296), (372, 282)]

for index, item in enumerate(pointsInside): 
    if index == len(pointsInside) -1:
        break
    cv2.line(image, item, pointsInside[index + 1], [0, 255, 0], 2) 

关于您当前的代码,看起来您正试图通过索引当前点来访问下一个点。您需要检查原始数组中的下一个点。

执行第二个版本的更多Pythonic方法是:

for point1, point2 in zip(a, a[1:]): 
    cv2.line(image, point1, point2, [0, 255, 0], 2) 

答案 1 :(得分:2)

如果您只想绘制线条,那么cv2.polyines怎么样?当您已有轮廓对象时,首选cv2.drawContours

cv2.polylines(image, 
              a, 
              isClosed = False,
              color = (0,255,0),
              thickness = 3, 
              linetype = cv2.LINE_AA)