是什么导致此代码行中的SystemErrorcv2.line(output, point1, point2, (0,0,255), 5)

最佳答案

面对相同的问题,并通过使用元组而不是列表来解决:

# How it looked before:
point1, point2 = [x1, y1], [x2, y2]

# How it should be:
point1, point2 = (x1, y1), (x2, y2)

关于python - SystemError : new style getargs format but argument is not a tuple?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32673359/

10-12 17:24