module 'imutils' has no attribute 'order_points'
时间: 2023-11-14 11:06:57 浏览: 74
这个错误通常是因为imutils库的版本过低导致的。你可以尝试更新imutils库,或者使用以下代码替代order_points函数:
```python
def order_points(pts):
rect = np.zeros((4, 2), dtype="float32")
s = pts.sum(axis=1)
rect[0] = pts[np.argmin(s)]
rect[2] = pts[np.argmax(s)]
diff = np.diff(pts, axis=1)
rect[1] = pts[np.argmin(diff)]
rect[3] = pts[np.argmax(diff)]
return rect
```
相关问题
怎么解决AttributeError: module 'torch' has no attribute '_six',我代码中用到了AttributeError: module 'torch' has no attribute '_six'
根据提供的引用内容,出现AttributeError: module 'torch' has no attribute '_six'报错是因为在torch 2.0版本以后中没有‘_six.py’文件。解决这个问题的方法是降低torch的版本或者安装torch的旧版本。具体步骤如下:
1.卸载当前的torch版本
```shell
pip uninstall torch
```
2.安装torch的旧版本,例如1.9.1版本
```shell
pip install torch==1.9.1
```
如果在步骤5中发现有’_six.py’文件,可以点击重启jupyter kernel即可解决。
AttributeError: module 'importlib._bootstrap_external' has no attribute '_w_long'
这个错误是由于导入的模块中缺少了"_w_long"属性引起的。解决这个问题的方法是参考《python数据处理》中关于"module 'importlib._bootstrap' has no attribute '_w_long'"的解决方法。另外,你还可以尝试重新安装slate模块来解决这个问题。
阅读全文