在 ubuntu 中使用带有 opencv 的 qt 进行简单显示后编译时,我得到了空终端窗口的输出。
代码
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
int main()
{
cv::Mat image= cv::imread("img.jpg");
cv::namedWindow("My Image");
cv::imshow("My Image", image);
cv::waitKey(5000);
return 1;
}
给我解决方案?
谢谢你
达纳什