码迷,mamicode.com
首页 > 其他好文 > 详细

OpenCV连通域相关操作

时间:2016-12-18 23:12:09      阅读:359      评论:0      收藏:0      [点我收藏+]

标签:strong   size   hiera   大小   http   相关   code   分享   center   

  1. 连通域反选

在使用Opencv的findcontours函数寻找连通域轮廓时,可能需要使用到类似PS中的选区反选功能。

以下对这一部分进行说明:

在findcontours函数中的mode参数中选择CV_RETR_CCOMP两级轮廓查找,

构建反选的选区范围为图像大小

    vector<cv::Point> boundcontours(4);
    boundcontours[0] = cv::Point(0, 0);
    boundcontours[1] = cv::Point(0, src.rows-1);
    boundcontours[2] = cv::Point(src.cols-1, src.rows-1);
    boundcontours[3] = cv::Point(src.cols-1, 0);

 

int main()
{
    cv::Mat src = imread("原图.png", 0);
    vector<vector<cv::Point>>linecontours;
    vector<cv::Vec4i>hierarchy;
    findContours(src, linecontours, hierarchy, CV_RETR_CCOMP, CV_CHAIN_APPROX_SIMPLE);
    linecontours[0].clear();
    vector<cv::Point> boundcontours(4);
    boundcontours[0] = cv::Point(0, 0);
    boundcontours[1] = cv::Point(0, src.rows-1);
    boundcontours[2] = cv::Point(src.cols-1, src.rows-1);
    boundcontours[3] = cv::Point(src.cols-1, 0);
    linecontours[0] = boundcontours;
    cv::Mat temptImg(scr.size(),CV_8UC1,Scalar(0));
    drawContours(temptImg, linecontours, -1, Scalar(255), -1);
}

原图:

技术分享

结果如下:

技术分享

OpenCV连通域相关操作

标签:strong   size   hiera   大小   http   相关   code   分享   center   

原文地址:http://www.cnblogs.com/didea/p/6195718.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!