欢迎来到天天文库
浏览记录
ID:58513277
大小:11.50 KB
页数:1页
时间:2020-09-03
《提取二值图像中的最大轮廓OpenCV.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、CvPoint*points=NULL;CvMemStorage*storage=cvCreateMemStorage(0);intmethod=CV_CHAIN_APPROX_SIMPLE;intmode=CV_RETR_EXTERNAL;CvSeq*contours=NULL;intNc=0;intn_mMax=-1;Nc=cvFindContours(pImg,storage,&contours,sizeof(CvContour),mode,method);for(;contours;contours=contours->h_next){if(contours->total>n_mM
2、ax){free(points);points=NULL;n_mMax=contours->total;points=(CvPoint*)malloc(contours->total*sizeof(CvPoint));for(i=0;itotal;i++){CvPoint*pt=(CvPoint*)cvGetSeqElem(contours,i);points[i].x=pt->x;points[i].y=pt->y;}}else{continue;}}
此文档下载收益归作者所有