目前正在学习使用OpenCV做图像处理,在此将自己编写的一些代码上传,希望能给其他像我一样的小白带来帮助。
#include <opencv2/opencv.hpp> using namespace cv; int main() { Mat img; // 读取图像 img = imread("E:/mypicture/1.jpg",1); // 1-RGB、0-gray // 创建一个名为 "beautiful"窗口 namedWindow("beautiful",CV_WINDOW_NORMAL); // 在窗口中显示“beautiful”窗口 imshow("beautiful", img); // 等待6000 ms后窗口自动关闭 waitKey(6000); // destroyAllWindows(); // destroyWindow("beautiful"); return 0; }
代码参考了浅墨(毛星云)大佬在SCDN上发的文章,在此再次哀悼这位前辈的逝去。希望对CV感兴趣的朋友一起学习,祝共同进步。