1

我想使用 cvDrawContours 来绘制我自己从 CvSeq 创建的轮廓(通常,轮廓是从 OpenCV 的其他函数中返回的)。这是我的解决方案,但它不起作用:(

IplImage*    g_gray    = NULL;

CvMemStorage *memStorage = cvCreateMemStorage(0); 
CvSeq* seq = cvCreateSeq(0, sizeof(CvSeq), sizeof(CvPoint)*4, memStorage); 


CvPoint points[4]; 
points[0].x = 10;
points[0].y = 10;
points[1].x = 1;
points[1].y = 1;
points[2].x = 20;
points[2].y = 50;
points[3].x = 10;
points[3].y = 10;

cvSeqPush(seq, &points); 

g_gray = cvCreateImage( cvSize(300,300), 8, 1 );

cvNamedWindow( "MyContour", CV_WINDOW_AUTOSIZE );

cvDrawContours( 
    g_gray, 
    seq, 
    cvScalarAll(100),
    cvScalarAll(255),
    0,
    3);

cvShowImage( "MyContour", g_gray );

cvWaitKey(0);  

cvReleaseImage( &g_gray );
cvDestroyWindow("MyContour");

return 0;

我从这篇文章 OpenCV 序列中选择了从 CvPoint 创建自定义轮廓序列的方法——如何创建点对序列?

对于第二次尝试,我使用 Cpp OpenCV 做到了:

vector<vector<Point2i>> contours;
Point2i P;
P.x = 0;
P.y = 0;
contours.push_back(P);
P.x = 50;
P.y = 10;
contours.push_back(P);
P.x = 20;
P.y = 100;
contours.push_back(P);

Mat img = imread(file, 1);
drawContours(img, contours, -1, CV_RGB(0,0,255), 5, 8);

也许我错误地使用了数据。编译器会警告错误并且不允许 push_back 指向这样的向量。为什么??

错误是这样的: Error 2 error C2664: 'std::vector<_Ty>::push_back' : cannot convert parameter 1 from 'cv::Point2i' to 'const std::vector<_Ty> &'

4

2 回答 2

1

我终于完成了。

Mat g_gray_cpp = imread(file, 0);  

vector<vector<Point2i>> contours; 
vector<Point2i> pvect;
Point2i P(0,0);

pvect.push_back(P);

P.x = 50;
P.y = 10;   
pvect.push_back(P);

P.x = 20;
P.y = 100;
pvect.push_back(P);

contours.push_back(pvect);

Mat img = imread(file, 1);

drawContours(img, contours, -1, CV_RGB(0,0,255), 5, 8);

namedWindow( "Contours", 0 );
imshow( "Contours", img );  

因为 'contours' 是向量>,所以 contours.push_back(var) -> var 应该是向量

谢谢!我学会了一个错误

于 2012-03-01T15:43:17.697 回答
1

在您的第一个示例中,您创建了一系列带有单个元素的点四人组。序列elem_size应该是sizeof(CvPoint)(不乘以四)并一一相加:

CvMemStorage *memStorage = cvCreateMemStorage(0); 
// without these flags the drawContours() method does not consider the sequence
// as contour and just draws nothing
CvSeq* seq = cvCreateSeq(CV_32SC2 | CV_SEQ_KIND_CURVE, 
      sizeof(CvSeq), sizeof(CvPoint), memStorage); 

cvSeqPush(cvPoint(10, 10));
cvSeqPush(cvPoint(1, 1));
cvSeqPush(cvPoint(20, 50));

请注意,您不需要插入最后一个点来绘制轮廓,轮廓会自动关闭。

于 2013-04-04T05:12:11.340 回答