全文预览已结束
下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
opencv轮廓提取与轮廓拟合 #include #include #include #include #include using namespace std; using namespace cv; int main() / Read input binary image Mat image= imread(“./binaryGroup.bmp“,0); if (!image.data) return 0; namedWindow(“Binary Image“); imshow(“Binary Image“,image); / Get the contours of the connected components vector contours; /findContours的输入是二值图像 findContours(image, contours, / a vector of contours CV_RETR_EXTERNAL, / retrieve the external contours CV_CHAIN_APPROX_NONE); / retrieve all pixels of each contours / Print contours length轮廓的个数 cout :const_iterator itContours= contours.begin(); for ( ; itContours!=contours.end(); +itContours) cout size() :const_iterator itc= contours.begin(); while (itc!=contours.end() if (itc-size() size() cmax) itc= contours.erase(itc); else +itc; / draw contours on the original image Mat original= imread(“./group.bmp“); drawContours(original,contours, -1, / draw all contours Scalar(255,255,255), / in white 2); / with a thickness of 2 namedWindow(“Contours on Animals“); imshow(“Contours on Animals“,original); / Lets now draw black contours on white image /result.setTo(Scalar(0); /If the third parameter of this function is a negative value, then all contours are drawn. /Otherwise, it is possible to specify the index of the contour to be drawn drawContours(result,contours, -1, / draw all contours Scalar(255), / in black 1); / with a thickness of 1 image= imread(“./binaryGroup.bmp“,1); / testing the bounding box Rect r0= boundingRect(Mat(contours0);/boundingRect获取这 个外接矩形 rectangle(result,r0,Scalar(255,255,255),2); / testing the enclosing circle float radius; Point2f center; minEnclosingCircle(Mat(contours1),center,radius);/对轮廓进 行多变形逼近 circle(result,Point(center),static_cast(radius),Scalar(2 55),2); RotatedRect rrect= fitEllipse(Mat(contours2); ellipse(result,rrect,Scalar(255),2); /testing the approximate polygon vector poly; approxPolyDP(Mat(contours2),poly,5,true); cout :const_iterator itp= poly.begin(); while (itp!=(poly.end()-1) line(result,*itp,*(itp+1),Scalar(255),2); +itp; / last point linked to first point line(result,*(poly.begin(),*(poly.end()-1),Scalar(20),2); / testing the convex hull vector hull; convexHull(Mat(contours3),hull); / Iterate over each segment and draw it vector:const_iterator it= hull.begin(); while (it!=(hull.end()-1) line(result,*it,*(it+1),Scalar(255),2); +it; / last point linked to first point line(result,*(hull.begin(),*(hull.end()-1),Scalar(255),2); / testing the moments /iterate over all contours itc= contours.begin(); while (itc!=contours.end() / compute all moments Moments mom= moments(Mat(*itc+); / draw mass center circle(result, / position of mass center converted to integer Point(mom.m10/mom.m00,mom.m01/mom.m00), 2,Scalar(255),2); / draw black dot namedWindow(“Some Shape descriptors“); imshow(“Some Shape descriptors“,result); / New call to findContours but with CV_RETR_LIST flag image= imread(“./binaryGroup.bmp“,0); / Get the contours of the connected components findContours(image, contours, / a vector of contours CV_RETR_LIST, / retrieve the external and internal contours CV_CHAIN_APPROX_NONE); / retrieve all pixels of each contours / draw black contours on white image result.setTo(Scalar(0); drawContours(result,contours, -1, / draw all contours Scalar(255), / in black 2); / with
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 江苏省南京市2024-2025学年高二上学期期中考试 数学 含解析
- 浅谈初中历史作业错题的归纳和利用方法
- 《广东省常规跨径公路钢桥安装标准化指南(2024版)》
- 《新闻学基础》题集
- 市小型农田水利项目可行性研究报告
- 2025新译林版英语七年级下Unit 3 My hometown单词表
- 《培养良好书写习惯》主题班会教案3篇
- 部编小学语文三下二单元(《守株待兔》《陶罐和铁罐》《鹿角和鹿腿》《池子与河流》)大单元学习任务群教学设计
- 2024年营林及木竹采伐机械项目资金申请报告代可行性研究报告
- 强迫症简介以及案例分析
- GB/T 29712-2023焊缝无损检测超声检测验收等级
- 初中美术期末检测方案
- 第三节 生态系统的平衡课件
- 配电室运行维护投标方案(技术标)
- 初中化学试卷讲评课件
- 2024届东北师大附中重庆一中等六校化学高一第一学期期中检测试题含解析
- (完整版)医疗器械网络交易服务第三方平台质量管理文件
- 13G322-1~4《钢筋混凝土过梁(2013年合订本)》
- 信息管理监理实施细则水利水电工程
- (医学课件)DIC患者的护理
- 跨境数据流动的全球治理进展、趋势与中国路径
评论
0/150
提交评论