(我使用的是Mac OS 10.8.5)
我在使用Python 3(通过jupyter notebook),并试图
import cv2
。
I did
import cv2
succefully, but when I type
im_g = cv2.imread("smallgray.png", 0)
I get this error:
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-7-5eb2880672d2> in <module>()
----> 1 im_g = cv2.imread("smallgray.png", 0)
AttributeError: module 'cv2' has no attribute 'imread'
我还检查了dir(cv2)
,我得到了。
['__doc__', '__loader__', '__name__', '__package__', '__path__', '__spec__'
我想很多功能都没有了......
是由于错误的opencv安装造成的吗?
事实上,我在获得opencv方面做了很多努力,我想我通过终端安装了 "太多次 "和不同的方法。(brew
, pip
)
我应该卸载opencv并重新开始吗?我怎样才能正确地做到这一点?