本文介绍了SystemError:新样式的getargs格式,但参数不是元组?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
很抱歉,如果这很琐碎,但是我只是在学习python,我在以下代码行中遇到此错误:cv2.line(output, point1, point2, (0,0,255),5)
Sorry if this is trivial but I am just learning python, I am getting this error for this line of code: cv2.line(output, point1, point2, (0,0,255),5)
我没看到问题...
推荐答案
面对相同的问题,并使用元组而不是列表来解决它:
Faced with the same problem and solved it by using tuples instead of lists:
# How it looked before:
point1, point2 = [x1, y1], [x2, y2]
# How it should be:
point1, point2 = (x1, y1), (x2, y2)
这篇关于SystemError:新样式的getargs格式,但参数不是元组?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!