编程语言
首页 > 编程语言> > python-Rubik cubefinder.py错误

python-Rubik cubefinder.py错误

作者:互联网

我想使用一些发现的代码从该站点检测Rubiks多维数据集:cubefinder.py.

在设法安装所有OpenCV库之后,将多维数据集显示给摄像机时出现此错误:

Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> ================================ RESTART ================================
>>> 

Traceback (most recent call last):
  File "C:\Users\user\Desktop\cubefinder.py", line 574, in <module>
    cv.Line(sg,pt[0],pt[1],(0,255,0),2)
TypeError: CvPoint argument 'pt1' expects two integers

编辑:对不起那一大堆代码,我只是看到这是愚蠢的和不必要的.

解决方法:

函数cv.Line期望将点指定为整数对,但是您要以成对的浮点数传递.您需要先将这些点四舍五入为最接近的整数,然后再将它们传递给cv.Line.也许具有这样的辅助功能:

def grid(p):
    """Return the nearest point with integer coordinates to p."""
    return int(round(p[0])), int(round(p[1]))

那你的

cv.Line(sg,pt[0],pt[1],(0,255,0),2)

变成

cv.Line(sg,grid(pt[0]),grid(pt[1]),(0,255,0),2)

(另一种可能性是首先避免制作浮点坐标.但这取决于您的应用程序是否需要额外的精度.)

标签:opencv,computer-vision,rubiks-cube,python
来源: https://codeday.me/bug/20191102/1991601.html