AttributeError:模块'cv2.dnn'没有属性'NMSBoxesRotated'

时间:2019-02-11 07:21:08

标签: python opencv

我有一个非常简单的code用于python中的文本检测。但是从命令行运行时会抛出错误(第137行)。

cv.dnn.NMSBoxes可以正常工作,但无法识别cv.dnn.NMSBoxesRotated。

这是错误:

indices = cv.dnn.NMSBoxesRotated(boxes, confidences, onfThreshold, nmsThreshold)
AttributeError: module 'cv2.dnn' has no attribute 'NMSBoxesRotated'

如果有人能指出我所缺少的内容,我将不胜感激。谢谢。

1 个答案:

答案 0 :(得分:0)

pip install --user  opencv-python --upgrade

此命令对我有用,谢谢@JustinEzequiel

我的OpenCV版本是:

>>> cv2.__version__
'4.1.1'

当我将opencv升级到4.1.1时,此错误消失了