问题:VS使用openCV debug模式报错“无法解析外部符号”,release模式正常

原因:

1.debug模式和Release模式配置不一样,需要单独配置,debug模式附加依赖项比Release模式多了一个“d”, Debug模式是:opencv_world410d.lib,release模式是opencv_world410.lib

VS使用openCV debug模式报错“无法解析外部符号”,release模式正常

2.debug模式代码生成 运行库是 多线程调试 DLL (/MDd),release模式是:多线程调试 DLL (/MD)

VS使用openCV debug模式报错“无法解析外部符号”,release模式正常

 

相关文章:

  • 2021-09-03
  • 2022-12-23
  • 2021-10-17
  • 2022-12-23
  • 2021-09-10
  • 2021-11-13
猜你喜欢
  • 2022-12-23
  • 2021-07-16
  • 2021-10-12
  • 2021-11-03
  • 2021-11-15
  • 2022-01-11
  • 2021-06-04
相关资源
相似解决方案