1
在OpenCV中 - 如何將CvPoint轉換爲CvSeq?在OpenCV中 - 如何將CvPoint轉換爲CvSeq?
我有CvPoints,我想用於cvconvexhull2打開函數 - 但它只接受CvSeq作爲輸入。請幫我在這個轉換..
在OpenCV中 - 如何將CvPoint轉換爲CvSeq?在OpenCV中 - 如何將CvPoint轉換爲CvSeq?
我有CvPoints,我想用於cvconvexhull2打開函數 - 但它只接受CvSeq作爲輸入。請幫我在這個轉換..
據OpenCV的documentation,
這裏是如何創建不同的OpenCV動態數據結構存儲,並填寫動態擴展序列:
CvMemStorage* storage = cvCreateMemStorage(0);
CvSeq* seq = cvCreateSeq(CV_32SC2, sizeof(CvSeq), sizeof(CvPoint), storage);
int i;
for(i = 0; i < 10; i++){
CvPoint pt;
pt.x = rand();
pt.y = rand();
cvSeqPush(seq, &pt);
}
HTTP: //stackoverflow.com/questions/8312102/how-to-insert-a-cvpoint-into-a-cvseq-with-cvinsert – Barshan 2013-04-10 13:20:26