我做了如下:
我已将 OpenCV_DIR 变量设置为设置为 $(OPENCV_ROOT)/build/x86/vc11/lib 的构建路径。
在我的 CMakeLists.txt 中,我调用 find_package 函数:
find_package( OpenCV REQUIRED )
应该设置一些连接到OpenCV的变量,但是设置不正确。前任。OpenCV_INCLUDE_DIRS 应设置为
$(OPENCV_ROOT)/build/include
或者
$(OPENCV_ROOT)/include
但不是它,而是设置为
$(OPENCV_ROOT)/build/x86/vc11/lib/include;$(OPENCV_ROOT)/x86/vc11/lib/include/opencv
怎样做才能拥有正确的道路?