windows没问题:
python -m pip install opencv-python -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
linux最新版有问题,下老版本。
python -m pip install opencv-python==3.4.6.27 -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
cv2
。因为2不是表示版本,而是为了强调底层实现的C API(由cv
前缀表示)和C++ API之间的差异(用cv2
前缀表示)。import cv2
print(cv2.__version__)
Linux下的最新的3.4.11版本和4.3.0的看似没问题,但是cv2.imshow()
时,直接出现致命错误Fontconfig error: failed reading config file
。(Ubuntu16.04)
所以上面还是换回了3.4.6
(3.4.6.27)老版本,可以正常显示图片。
QObject::moveToThread: Current thread (0x112a710) is not the object's thread (0x158c3f0).
Cannot move to target thread (0x112a710)
这是因为QT界面的问题。
听说可以,但我没管,因为好像图片可以正常打开,感觉像是gedit
的WARNING一样,可以不用管。
conda install pyqt