Opencv header files and Tips

Creative Commons License Copyright: Attribution, allow others to create paper-based, and must distribute paper (based on the original license agreement with the same license Creative Commons )


First, the header file

Directly with their own universal header on the line.

#include<opencv2/opencv.hpp>

Detailed

Why is this the first document is a panacea, because it contains all the header files, not rote. And write specific headers just to better illustrate explain.

#include<opencv2/opencv.hpp>
#idndef __OPENCV_ALL_HPP__
#define __OPENCV_ALL_HPP__

#include "opencv2/core/core_c.h"
#include "opencv2/core/core.hpp"
#include "opencv2/flann/niniflann.hpp"
#include "opencv2/imgproc/imgproc_c.h"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/photo/photo.hpp"
#include "opencv2/video/video.hpp"
#include "opencv2/features2d/features2d.hpp"
#include "opencv2/objectect/objectect/hpp"
#include "opencv2/calib3d/calib3d.hpp"
#include "opencv2/ml/ml.hpp"
#include "opencv2/highgui/highgui_c.h"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/contrib/contrib.hpp"

#endif

Second, the template

#include<opencv2/opencv.hpp>
using namespace cv;
int main()
{
	...
	return 0;
}

Guess you like

Origin blog.csdn.net/sandalphon4869/article/details/94431938