问题:
jupyter notebook 上,在使用 opencv 的时候,发现最基本的图片显示会出现问题,即,当使用 cv2.imshow() 的时候,会导致
OpenCV Error:Unspecified error (The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Carbon support. If you are on Ubuntu or Debian, install libgtk2.0-dev and pkg-config, then re-run cmake or configure script) in cvShowImage, file /feedstock_root/build_artefacts/opencv_1496434080029/work/opencv-3.2.0/modules/highgui/src/window.cpp, line 583 Traceback (most recent call last):File "<stdin>", line 1, in <module> cv2.error:/feedstock_root/build_artefacts/opencv_1496434080029/work/opencv-3.2.0/modules/highgui/src/window.cpp:583: error: (-2) The function is not implemented.
Rebuild the library with Windows, GTK+ 2.x or Carbon support. If you are on Ubuntu or Debian, install libgtk2.0-dev and pkg-config, then re-run cmake or configure script in function cvShowImage.
在ubutnu系统下,应该是缺少libgtk2.0-dev 和 pkg-config,
解决方法,
第一步,通过 apt-cache 检查默认存储库中是否有自己需要的包,例如,使用 apt-cache search libgtk2.0-dev,没有的话,可以先使用 sudo apt-get update来更新库包,再进行检查,一般更新后都能找到。
第二步,使用 sudo apt install ibgtk2.0-dev pkg-config 安装缺少的包。
如果还不能解决问题的话,可以用 matplotlib.pyplot.imshow() 暂时替代图片显示函数。