欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

发生If you are on Ubuntu or Debian, install libgtk2.0-dev and pkg-config错误的解决方式

程序员文章站 2022-06-01 14:41:35
...

 

在某个树莓派安装opencv后的使用中,我执行程序遇到了这样的错误

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'

 

经过尝试发现

首先需要按照提示安装libgtk2.0-dev and pkg-config

sudo apt-get install libgtk2.0-dev pkg-config

之后我们需要重新进行一次opencv的安装工作(我想这个大概就是提示中的 re-run cmake)

进入opencv源代码文件夹,进入之前构建的build文件夹

执行

cmake .. 
sudo make 
sudo make install

再次使用发现一切正常