c语言通过opencv实现轮廓处理与切割
更新时间:2018年01月05日 10:33:16 作者:Farmwang
这篇文章主要介绍了c语言通过opencv实现轮廓处理与切割,具有一定借鉴价值,需要的朋友可以参考下
注意在寻找轮廓时要选择中寻找外层轮廓
RETR_EXTERNAL
#include "opencv/cv.h" #include "opencv/highgui.h" using namespace std; using namespace cv; int main() { Mat srcimg=imread("./22.jpg"); Mat dst; cvtColor(srcimg,dst,CV_BGR2GRAY); threshold(dst,dst,120,255,1); vector<vector<Point> > edgepoint; vector<Vec4i> lclass; findContours(dst,edgepoint,lclass,RETR_EXTERNAL,CHAIN_APPROX_NONE,Point()); Mat mat[edgepoint.size()]; for(int i=0;i<edgepoint.size();i++) { Rect rec=boundingRect(Mat(edgepoint[i])); mat[i]=dst(rec); rectangle(dst,rec,Scalar(100,80,90),1,1,0); drawContours(dst,edgepoint,i,Scalar(200),1,8,lclass); string str=to_string(i); imshow(str,mat[i]); } imshow("tt",dst); cout<<edgepoint.size()<<endl; waitKey(0); }
结果如下:
总结
以上就是本文关于c语言通过opencv实现轮廓处理与切割的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!
相关文章
如何将编译过的C++库迅速部署在Visual Studio新项目中
本文介绍在Visual Studio中,通过属性表,使得一个新建解决方案中的项目可以快速配置已有解决方案的项目中各类已编译好的C++第三方库的方法,感兴趣的朋友跟随小编一起看看吧2024-05-05
最新评论