C++学习(三)显示一张图片
配置opencv链接代码如下:#include<opencv2/opencv.hpp>#include<opencv2/core/core.hpp>// 核心组件#include<opencv2/highgui/highgui.hpp>// GUI#include<opencv2/imgproc/imgproc.hpp>...
·
代码如下:
#include<opencv2/opencv.hpp>
#include<opencv2/core/core.hpp> // 核心组件
#include<opencv2/highgui/highgui.hpp> // GUI
#include<opencv2/imgproc/imgproc.hpp> // 图像处理
using namespace cv;
using namespace std;
int main()
{
Mat image;
image = imread("C:\\Users\\Administrator\\Desktop\\test.jpg");
imshow("test", image);
waitKey(0);
}
更多推荐
已为社区贡献6条内容
所有评论(0)