c++ - 如何在 RelWithDebInfo 模式下构建依赖于 opencv 3.4.0 的项目

标签 c++ opencv cmake debug-symbols

这是我的主要 cmake 文件:

project( reconstructor )                                    
cmake_minimum_required(VERSION 3.1)
set(CMAKE_SUPPRESS_REGENERATION true)
include(ExternalProject)
set(Boost_INCLUDE_DIR c:/boost_1_66_0)
set(Boost_LIBRARY_DIR C:/boost_1_66_0/lib64-msvc-14.0 )
SET("OpenCV_DIR" "C:/opencv-3.4.0/build")
find_package( OpenCV COMPONENTS core imgproc highgui aruco optflow REQUIRED )
add_subdirectory(prepare_folder)
add_subdirectory(draw_signal)
add_subdirectory(epipolar_reconstructor)
add_subdirectory(test_detection)
add_subdirectory(homography_matcher)
add_subdirectory(multiview)
add_subdirectory(filter_clouds)
add_subdirectory(filter_clouds_solid)
add_subdirectory(optical_flow)
add_subdirectory(prepare_splices)
add_subdirectory(skew_matcher)
add_subdirectory(triangle_matcher)

和我的子项目文件:

cmake_minimum_required(VERSION 3.1)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
get_filename_component(CUR_PROJECT_NAME ${CMAKE_CURRENT_SOURCE_DIR} NAME)
find_package(Boost COMPONENTS system filesystem REQUIRED)
link_directories(${Boost_LIBRARY_DIR})            
FILE(GLOB cpps *.cpp)
FILE(GLOB commons ../common/*.c*)
add_executable( ${CUR_PROJECT_NAME}  ${cpps} ${commons})
set_target_properties(${CUR_PROJECT_NAME} PROPERTIES VS_DEBUGGER_WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/bin")
include_directories(${Boost_INCLUDE_DIR})
target_link_libraries( ${CUR_PROJECT_NAME} ${OpenCV_LIBS} ${Boost_LIBRARIES})

但我无法在 RelWithDebInfo 模式下构建,在这种情况下,MSVC 会给我以下链接错误:

1>epipolar_reconstructor.obj : error LNK2019: unresolved external symbol "void __cdecl cv::Rodrigues(class cv::_InputArray const &,class cv::_OutputArray const &,class cv::_OutputArray const &)" (?Rodrigues@cv@@YAXAEBV_InputArray@1@AEBV_OutputArray@1@1@Z) referenced in function "struct std::pair<class cv::Mat,class cv::Mat> __cdecl calcR(struct View &,struct View &)" (?calcR@@YA?AU?$pair@VMat@cv@@V12@@std@@AEAUView@@0@Z)
1>triangulate.obj : error LNK2001: unresolved external symbol "void __cdecl cv::Rodrigues(class cv::_InputArray const &,class cv::_OutputArray const &,class cv::_OutputArray const &)" (?Rodrigues@cv@@YAXAEBV_InputArray@1@AEBV_OutputArray@1@1@Z)
1>epipolar_reconstructor.obj : error LNK2019: unresolved external symbol "void __cdecl cv::stereoRectify(class cv::_InputArray const &,class cv::_InputArray const &,class cv::_InputArray const &,class cv::_InputArray const &,class cv::Size_<int>,class cv::_InputArray const &,class cv::_InputArray const &,class cv::_OutputArray const &,class cv::_OutputArray const &,class cv::_OutputArray const &,class cv::_OutputArray const &,class cv::_OutputArray const &,int,double,class cv::Size_<int>,class cv::Rect_<int> *,class cv::Rect_<int> *)" (?stereoRectify@cv@@YAXAEBV_InputArray@1@000V?$Size_@H@1@00AEBV_OutputArray@1@2222HN1PEAV?$Rect_@H@1@3@Z) referenced in function "void __cdecl handlePair(struct View &,struct View &,struct Folder &)" (?handlePair@@YAXAEAUView@@0AEAUFolder@@@Z)

(调试/发布构建正常)我该如何解决这个问题?

最佳答案

尽管我无法在 RelWithDebInfo 模式下构建,但我找到了一个解决方法。在您的 MSVC 项目中启用调试信息,它将允许您跟踪崩溃堆栈位置:

enter image description here

enter image description here

enter image description here

关于c++ - 如何在 RelWithDebInfo 模式下构建依赖于 opencv 3.4.0 的项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49462043/

相关文章:

python - 从二进制字符串python写入mp4文件

android - 在Gradle中针对不同ABI的CMAKE参数

c++ - CMake - 查找外部库

c++ - 使用 CMake 生成 Visual Studio C++ 项目文件

python - virtualenv 和 python 中的两个版本的 OpenCV

c++ - 访问 Ximea 相机并使用 OpenCV 设置预定义分辨率显示令人困惑的输出,这是由于相机默认分辨率大小的 Mat

c++ - 在 Matlab 中使用 Google protocol buffer(protobuf) 的最佳方式

c++ - 如何在构造函数中初始化数组?

c++ STL cout源代码

c++ - OpenCV VideoCapture 支持的最大分辨率