博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
opencv删除轮廓
阅读量:5257 次
发布时间:2019-06-14

本文共 866 字,大约阅读时间需要 2 分钟。

1 #include 
2 #include
3 using namespace std; 4 using namespace cv; 5 6 7 int main() 8 { 9 Mat img_in,img_out;10 11 img_in = imread("1.jpg",0);12 13 threshold(img_in, img_out, 0, 255,THRESH_BINARY);14 Mat img_out2;15 vector< vector< Point> > contours;16 findContours(img_out2, contours, RETR_TREE, CHAIN_APPROX_NONE);17 vector
>::iterator itc = contours.begin();18 while (itc != contours.end())19 {20 if (itc->size()<50)21 {22 itc = contours.erase(itc);23 }24 else25 {26 ++itc;27 }28 }29 drawContours(img_out2, contours, -1, Scalar(255),4);30 imshow("结果图", img_out2);31 waitKey(0);32 return 0;33 }

 

转载于:https://www.cnblogs.com/hsy1941/p/8082115.html

你可能感兴趣的文章
shell脚本
查看>>
Upload Image to .NET Core 2.1 API
查看>>
Js时间处理
查看>>
Java项目xml相关配置
查看>>
三维变换概述
查看>>
vue route 跳转
查看>>
【雷电】源代码分析(二)-- 进入游戏攻击
查看>>
Entityframework:“System.Data.Entity.Internal.AppConfig”的类型初始值设定项引发异常。...
查看>>
Linux中防火墙centos
查看>>
mysql新建用户,用户授权,删除用户,修改密码
查看>>
FancyCoverFlow
查看>>
JS博客
查看>>
如何设置映射网络驱动器的具体步骤和方法
查看>>
ASP.NET WebApi 基于OAuth2.0实现Token签名认证
查看>>
283. Move Zeroes把零放在最后面
查看>>
Visual Studio Code 打开.py代码报Linter pylint is not installed解决办法
查看>>
Python 数据类型
查看>>
S5PV210根文件系统的制作(一)
查看>>
centos下同时启动多个tomcat
查看>>
slab分配器
查看>>