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