widget.obj:-1: error: LNK2019: 无法解析的外部符号 "bool __cdecl cv::imwrite(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class cv::debug_build_guard::_InputArray const &,class std::vector<int,class std::allocator<
时间: 2023-07-02 22:13:40 浏览: 283
error LNK2019: 无法解析的外部符号 问题的解决办法
这个错误通常表示链接器无法找到OpenCV库的实现,导致在编译时无法解析cv::imwrite函数。解决此问题的步骤如下:
1. 确保已经正确地配置了OpenCV库。你需要在Qt项目中正确地链接OpenCV库,并在代码中包含正确的头文件。例如:
```
#include <opencv2/core.hpp>
#include <opencv2/imgcodecs.hpp>
```
2. 确认你的代码中没有使用旧版本的cv::imwrite函数。在OpenCV 3.0及以上版本中,cv::imwrite函数的参数发生了变化。应该使用以下函数:
```
cv::imwrite("filename.jpg", image, cv::IMWRITE_JPEG_QUALITY);
```
其中,第三个参数指定了JPEG的压缩质量,可以根据需要进行调整。
3. 确认你的项目中包含了正确的OpenCV库文件。在Qt项目中,你需要在.pro文件中添加以下行:
```
LIBS += -lopencv_core -lopencv_imgcodecs
```
这将链接OpenCV核心库和图像编解码库。
希望这些步骤可以帮助你解决问题。
阅读全文