OpenCV C ++ drawContours错误

时间:2018-08-26 03:07:04

标签: c++ opencv

Mat frame;
Mat frame2;
Mat output_frame;
Mat imgray;
Mat imgCanny;
vector<vector<Point> > contours;
vector<Point> approx;

Mat img = imread("abc.jpg");

cvtColor(img, imgray, COLOR_BGR2GRAY);
Canny(imgray, imgCanny, 10, 100, 3, false);

findContours(imgCanny, contours, RETR_TREE, CHAIN_APPROX_SIMPLE);
double eps = 0.1 * arcLength(contours[0], true);
approxPolyDP(contours[0], approx, 1, true);
drawContours(img, approx, 0, (0, 255, 0), 1);  // Here has Error..

我研究过OpenCV,但是drawContours方法(?)很奇怪。

我的意思是其他drawContours完成了(drawContours(img,contours,0,(0,255,0),1);

但是drawContours(img, approx, 0, (0, 255, 0), 1);有错误。

为什么?

我确认大约有数据(4个点)

1 个答案:

答案 0 :(得分:0)

drawContours的

输入应为vector<vector<Point> >。 这是对代码的微小修改。

Mat frame;
Mat frame2;
Mat output_frame;
Mat imgray;
Mat imgCanny;
vector<vector<Point> > contours;
vector<Point> approx;

Mat img = imread("abc.jpg");
cvtColor(img, imgray, COLOR_BGR2GRAY);
Canny(imgray, imgCanny, 10, 100, 3, false);

findContours(imgCanny, contours, RETR_TREE, CHAIN_APPROX_SIMPLE);
double eps = 0.1 * arcLength(contours[0], true);
approxPolyDP(contours[0], approx, 1, true);
vector<vector<Point> > approx_t;
approx_t.push_back(approx);
drawContours(img, approx_t, 0, (0, 255, 0), 1);