CMake Error at CMakeLists.txt:12 (find_package):By not providing "FindOpenCV.cmake" in CMAKE_MODULE_PATH this project hasasked CMake to find a package configuration file provided by "OpenCV", butCMake did not find one.Could not find a package configuration file provided by "OpenCV" with anyof the following names:OpenCVConfig.cmakeopencv-config.cmakeAdd the installation prefix of "OpenCV" to CMAKE_PREFIX_PATH or set"OpenCV_DIR" to a directory containing one of the above files. If "OpenCV"provides a separate development package or SDK, be sure it has beeninstalled.
2 回答

犯罪嫌疑人X
TA貢獻2080條經驗 獲得超4個贊
我用OpenCV 2.1 VS2008,這是沒有必要的CMake的,當我安裝OPENCV cmake的2.0,沒有遇到這個問題?,F在,我想與cmake在Linux opencv2.1接下來的兩個星期,一直是個難題。

夢里花落0921
TA貢獻1772條經驗 獲得超6個贊
CMakeList.txt 的問題
project(DisplayImage)
find_package(OpenCV REQUIRED)
add_executable(DisplayImage DisplayImage)
target_link_libraries(DisplayImage ${OpenCV_LIBS})
cmake_minimum_required(VERSION 2.8)
改為
project(DisplayImage)
set(OpenCV_DIR /usr/local/opencv/release)
add_executable(DisplayImage DisplayImage)
target_link_libraries(DisplayImage ${OpenCV_LIBS})
cmake_minimum_required(VERSION 2.8)
- 2 回答
- 0 關注
- 230 瀏覽
添加回答
舉報
0/150
提交
取消