undefined reference to cv::imwrite
时间: 2023-07-08 14:47:04 浏览: 380
Opencv中imwrite函数源代码
5星 · 资源好评率100%
"undefined reference to cv::imwrite"错误通常意味着编译器无法找到OpenCV库的链接。要解决这个问题,您需要确保已正确链接OpenCV库。
如果您使用的是CMake进行编译,您需要在CMakeLists.txt文件中添加以下行:
```
find_package(OpenCV REQUIRED)
target_link_libraries(your_project_name ${OpenCV_LIBS})
```
这将使用CMake查找OpenCV库,并将其链接到您的项目中。请确保将“your_project_name”替换为您的项目名称。
如果您手动编写Makefile进行编译,则需要将OpenCV库链接到您的项目中。在编译命令中添加以下行:
```
g++ -o your_executable your_source_files -lopencv_core -lopencv_highgui -lopencv_imgcodecs
```
这将链接OpenCV库到您的可执行文件中。请确保将“your_executable”替换为您的可执行文件名称,将“your_source_files”替换为您的源代码文件名称。
阅读全文