opencv2.4.9标准头文件模板

来源:互联网 发布:刺客信条枭雄优化好 编辑:程序博客网 时间:2024/05/17 06:55
#include<opencv2/core/core.hpp>#include<opencv2/highgui/highgui.hpp>#include<opencv2/imgproc/imgproc.hpp>#include<iostream>using namespace std;using namespace cv;int main(){Mat image = imread("elephant.jpg");if (image.empty()){cout << "读取图片错误" << endl;}waitKey();return 0;}