标签:
#include <iostream> #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> using namespace cv; int main() { //读入一张图片(游戏画面) Mat img=imread("C://pic.jpg"); //创建一个名为"游戏原画"窗口 namedWindow("游戏原画"); //在窗口中显示游戏原画 imshow("游戏原画",img); //等待6000ms后窗口自动关闭 waitKey(6000); return 0; }
读入一幅图片并显示出来
标签:
原文地址:http://www.cnblogs.com/hdsong/p/5655140.html