歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux編程 >> Linux編程 >> OpenCV函數cvConvexHull2由點集序列或數組創建凸邊形

OpenCV函數cvConvexHull2由點集序列或數組創建凸邊形

日期:2017/3/1 9:43:48   编辑:Linux編程

有圖有真相:

Objective-C中@property的所有屬性詳解 http://www.linuxidc.com/Linux/2014-03/97744.htm

Objective-C 和 Core Foundation 對象相互轉換的內存管理總結 http://www.linuxidc.com/Linux/2014-03/97626.htm

使用 Objective-C 一年後我對它的看法 http://www.linuxidc.com/Linux/2013-12/94309.htm

10個Objective-C基礎面試題,iOS面試必備 http://www.linuxidc.com/Linux/2013-07/87393.htm

Objective-C適用C數學函數 <math.h> http://www.linuxidc.com/Linux/2013-06/86215.htm

以下是點集序列或數組創建凸多邊形的代碼

#include<cv.h>
#include<highgui.h>
#include<stdlib.h>

#pragma comment(lib, "cv.lib")
#pragma comment(lib, "cxcore.lib")
#pragma comment(lib, "highgui.lib")

#define ARRAY 0

int main()
{
IplImage* img = cvCreateImage (cvSize(500, 500), 8, 3);
cvNamedWindow ("hull", 1);

#if ! ARRAY
CvMemStorage* storage = cvCreateMemStorage (0);
#endif
int i;
int contour = rand() % 100 + 1;
int hullcontour;
CvPoint pt0;
#if ! ARRAY
CvSeq* ptseq = cvCreateSeq (CV_SEQ_KIND_GENERIC | CV_32SC2, sizeof(CvContour), sizeof(CvPoint), storage);
CvSeq* hull;
for (i = 0; i < contour; i++)
{
pt0.x = rand() % (img->width / 2) + img->width / 4;
pt0.y = rand() % (img->height / 2) + img->height / 4;
cvSeqPush (ptseq, &pt0);
}
hull = cvConvexHull2 (ptseq, 0, CV_CLOCKWISE, 0);
/*hull = cvConvexHull2 (ptseq, 0, CV_CLOCKWISE, 1);*/
hullcontour = hull->total;
#else
CvPoint* points = (CvPoint*)malloc(contour * sizeof(points[0]));
int* hull = (int*)malloc(contour * sizeof(hull[0]));
CvMat point_mat = cvMat (1, contour, CV_32SC2, points);
CvMat hull_mat = cvMat (1, contour, CV_32SC1, hull);
for (i = 0; i < contour; i++)
{
pt0.x = rand() % (img->width / 2) + img->width / 4;
pt0.y = rand() % (img->height / 2) + img->height / 4;
points[i] = pt0;
}
cvConvexHull2 (&point_mat, &hull_mat, CV_CLOCKWISE, 0);
hullcontour = hull_mat.cols;
#endif
cvZero (img);
for (i = 0; i < contour; i++)
{
#if ! ARRAY
pt0 = * CV_GET_SEQ_ELEM(CvPoint, ptseq, i);
/*pt0 = ** CV_GET_SEQ_ELEM(CvPoint*, ptseq, i);*/
#else
pt0 = points[i];
#endif
cvCircle (img, pt0, 2, CV_RGB(255, 0, 0), CV_FILLED);
}
#if ! ARRAY
pt0 = ** CV_GET_SEQ_ELEM(CvPoint*, hull, hullcontour - 1);
/*pt0 = * CV_GET_SEQ_ELEM(CvPoint, hull, hullcontour - 1);*/
#else
pt0 = points[hull[hullcontour - 1]];
#endif

for (i = 0; i < hullcontour; i++)
{
#if ! ARRAY
CvPoint pt = **CV_GET_SEQ_ELEM(CvPoint*, hull, i);
/*CvPoint pt = *CV_GET_SEQ_ELEM(CvPoint, hull, i);*/
#else
CvPoint pt = points[hull[i]];
#endif
cvLine (img, pt0, pt, CV_RGB(255, 0, 0));
pt0 = pt;
}

cvShowImage ("hull", img);

cvWaitKey (0);

#if ! ARRAY
cvClearMemStorage (storage);
#else
free (points);
free (hull);
#endif

return 0;
}

更多詳情見請繼續閱讀下一頁的精彩內容: http://www.linuxidc.com/Linux/2014-05/102407p2.htm

Copyright © Linux教程網 All Rights Reserved