环境配置
废话不多说,直接上图
因为oprncv4.1.0只支持x64,所以务必以下选项调为x64
最后用以下代码测试
#include <opencv2/opencv.hpp>
#include <iostream>
using namespace cv;
using namespace std;
int main()
{
Mat img = imread("C:\\Users\\Administrator\\Desktop\\zhuying.jpeg");
if (img.empty())
{
printf("Could not find the image!\n");
return - 1;
}
imshow("ImputImage", img);
waitKey(0);
return 0;
}
若成功载入图片,这任务就完成了
原文地址:https://www.cnblogs.com/fzuerzmj/p/10823068.html
时间: 2024-10-06 21:58:53