OPENCV编写播放AVI格式视频例子时发生的错误

来源:互联网 发布:美工的素材网站 编辑:程序博客网 时间:2024/05/06 03:53

出错如下:

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 cvNamedWindow, file /home/qiu/opencv/opencv-2.4.9/modules/highgui/src/window.cpp, line 483
terminate called after throwing an instance of 'cv::Exception'
  what():  /home/qiu/opencv/opencv-2.4.9/modules/highgui/src/window.cpp:483: 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 cvNamedWindow


----想不通的是明明已经安装了GTK+2.x这些东东


简单的解释就是你的GTK+2.x要先于OpenCV安装,所以它给的解决方法是You should remove the current installation of opencv from your system; rebuild your opencv lib after installing gtk dev lib in the correct path; and reinstall the compiled opencv lib. 


我按照这个方法,又重新用cmake-gui make sudo make install 重新安装了opancv一遍,最后可以运行了。

0 0
原创粉丝点击