2012-02-25 40 views
1

我想使用cvDrawContours從CvSeq創建自己的輪廓(通常,輪廓從OpenCV的其他功能反映)。這是我的解決方案,但它不工作:(在OpenCv中創建CvPoint的自定義序列

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 sequences -- how to create a sequence of point pairs?

創建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點一樣,爲什麼?

載體。

的錯誤是這樣的: 錯誤2錯誤C2664: '的std ::矢量< _Ty> ::的push_back':無法從 'CV :: Point2i' 轉換參數1至「常量性病::矢量< _Ty> & '

+0

我試過OpenCV C++。但仍然無法解決。也許我錯誤地使用了它。我在問題中添加了我的試用版 – 2012-03-01 09:40:43

回答

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.push_back(VAR) - > var目錄應該是一個矢量

謝謝!我已經瞭解到一個bug

1

在你的第一個例子中,你創建了一個具有單個元素的點四元組序列。序列elem_sizesizeof(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)); 

注意你不需要插入最後一點畫出輪廓,輪廓自動關閉。