licornea_tools
opencv.h
Go to the documentation of this file.
1 #ifndef LICORNEA_OPENCV_H_
2 #define LICORNEA_OPENCV_H_
3 
4 #include <opencv2/opencv.hpp>
5 
6 namespace tlz {
7 
8 void cv_aa_circle(cv::Mat& mat, const cv::Point2f& center, float rad, cv::Scalar col, int thickness);
9 
10 #ifdef CV_MAJOR_VERSION
11 #if CV_MAJOR_VERSION == 3
12 #define HAVE_OPENCV3
13 #endif
14 #endif
15 
16 }
17 
18 #endif
void cv_aa_circle(cv::Mat &mat, const cv::Point2f &center, float rad, cv::Scalar col, int thickness)
Definition: opencv.cc:5