我是靠谱客的博主 难过刺猬,最近开发中收集的这篇文章主要介绍OpenCV4通过findContours找到指定轮廓后用drawContours填充制作掩膜,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

作者:RayChiu_Labloy
版权声明:著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处


代码:

// 提取轮廓
vector<vector<Point> > baseContours, baseContours_temp;
vector<Vec4i> baseHierarchy;
cv::findContours(imgCny, baseContours_temp, baseHierarchy, RETR_EXTERNAL, CHAIN_APPROX_SIMPLE);

//根据面积阈值筛选一下轮廓
for (int i = 0; i < baseContours_temp.size(); i++)
{
	cout << "轮廓面积为:" << contourArea(baseContours_temp[i]) << endl;
	if (contourArea(baseContours_temp[i]) > 30000)
		baseContours.push_back(baseContours_temp[i]);
}


//初始化Mat 掩膜容器
Mat mask = Mat::zeros(imgSmall.size(), CV_32FC1);

// 填充轮廓
Scalar color(rand() & 255, rand() & 255, rand() & 255);
drawContours(mask, baseContours, 0, color, FILLED);

imwrite("E:/Users/raychiu/Desktop/Industrial defect detection data/Handle classification/smallHandle.jpg", mask);

效果:

【如果对您有帮助,交个朋友给个一键三连吧,您的肯定是我博客高质量维护的动力!!!】

最后

以上就是难过刺猬为你收集整理的OpenCV4通过findContours找到指定轮廓后用drawContours填充制作掩膜的全部内容,希望文章能够帮你解决OpenCV4通过findContours找到指定轮廓后用drawContours填充制作掩膜所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部