Could not find a configuration file for package “OpenCV“ that is compatible with requested version “

错误详情:

Could not find a configuration file for package "OpenCV" that is compatible with requested version "3.0". 
The following configuration files were considered but not accepted: 
/usr/lib/aarch64-linux-gnu/cmake/opencv4/OpenCVConfig.cmake, 
version: 4.2.0 -- Configuring incomplete, errors occurred!

这个错误提示是在使用CMake构建项目时出现的,原因是CMake无法找到与所需OpenCV版本兼容的配置文件。

解决方法如下:

1. 确认OpenCV版本:首先需要确认所需的OpenCV版本是多少,然后检查系统中是否已经安装了该版本的OpenCV。

2. 指定OpenCV配置文件路径:如果系统中已经安装了所需版本的OpenCV,可以在CMakeLists.txt文件中指定OpenCV配置文件的路径,例如:

set(OpenCV_DIR /usr/local/share/OpenCV)
find_package(OpenCV 3.0 REQUIRED)

其中,/usr/local/share/OpenCV是OpenCV配置文件的路径,3.0是所需的OpenCV版本号。

3. 更新OpenCV版本:如果系统中没有安装所需版本的OpenCV,可以尝试更新OpenCV到所需版本,或者安装所需版本的OpenCV。

需要注意的是,如果使用的是Ubuntu或其他Linux发行版,可以使用包管理器来安装OpenCV,例如:

sudo apt-get install libopencv-dev

这将安装最新版本的OpenCV,如果需要安装特定版本的OpenCV,可以使用以下命令:

sudo apt-get install libopencv-dev=3.0.0

这将安装版本号为3.0.0的OpenCV。

猜你喜欢

转载自blog.csdn.net/k1419197516/article/details/129991033
今日推荐