this is about the image processing.
#include <iostream>
#include <stdio.h>
#include <opencv/highgui.h> //#include <opencv2/core/core.hpp>
#include <opencv2/opencv.hpp> //#include <opencv2/highgui/highgui.hpp>
// use these two header to instead of those two above, and then you do not have any compile error.
using namespace cv;
using namespace std;
int main( int argc, char** argv){
if(argc != 2){
cout << "Usage: display_image ImageToLoadAndDisplay" << endl;
return -1;
}
Mat image;
image = imread(argv[1], CV_LOAD_IMAGE_COLOR);
if(! image.data){
cout << "Could not open or find the image" << endl;
return -1;
}
namedWindow("Display window", WINDOW_AUTOSIZE);
imshow("Display window", image);
waitKey(0);
return 0;
}

本文介绍了一个使用OpenCV库进行图像处理的基础教程。通过一个简单的C++程序示例,展示了如何读取图片文件并将其显示出来。该程序首先检查命令行参数,然后尝试加载指定的图像文件。如果文件被成功加载,它将在一个名为“Display window”的窗口中显示该图像,并等待用户按键后退出。

被折叠的 条评论
为什么被折叠?



