CMake和OpenCV结合遇到问题,OpenCVConfig.CMake 10
CMakeErroratCMakeLists.txt:12(find_package):Bynotproviding"FindOpenCV.cmake"inCMAKE_M...
CMake Error at CMakeLists.txt:12 (find_package):
By not providing "FindOpenCV.cmake" in CMAKE_MODULE_PATH this project has
asked CMake to find a package configuration file provided by "OpenCV", but
CMake did not find one.
Could not find a package configuration file provided by "OpenCV" with any
of the following names:
OpenCVConfig.cmake
opencv-config.cmake
Add 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 been
installed. 展开
By not providing "FindOpenCV.cmake" in CMAKE_MODULE_PATH this project has
asked CMake to find a package configuration file provided by "OpenCV", but
CMake did not find one.
Could not find a package configuration file provided by "OpenCV" with any
of the following names:
OpenCVConfig.cmake
opencv-config.cmake
Add 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 been
installed. 展开
2个回答
展开全部
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)
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)
展开全部
我用OpenCV 2.1 VS2008,这是没有必要的CMake的,当我安装OPENCV cmake的2.0,没有遇到这个问题。现在,我想与cmake在Linux opencv2.1接下来的两个星期,一直是个难题。
这一点上,你想帮助 http://www.opencv.org.cn/forum/viewtopic.phpf=1&t=10070
才能看到?
我希望你尽快解决问题。提问或讨论,
这一点上,你想帮助 http://www.opencv.org.cn/forum/viewtopic.phpf=1&t=10070
才能看到?
我希望你尽快解决问题。提问或讨论,
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询