博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
OpenCV中的新函数connectedComponentsWithStats使用
阅读量:6231 次
发布时间:2019-06-22

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

主要内容:对比新旧函数,用于过滤原始图像中轮廓分析后较小的区域,留下较大区域。
关键字    :connectedComponentsWithStats
在以前,常用的方法是
是先调用
 cv::findContours() 
函数(传入
cv::RETR_CCOMP 
标志),随后在得到的连通区域上循环调用
 cv::drawContours()
比如,我在GOCVHelper中这样进行了实现
//寻找最大的轮廓
    VP FindBigestContour(Mat src){    
        int imax = 0; //代表最大轮廓的序号
        int imaxcontour = -1; //代表最大轮廓的大小
        std::vector<std::vector<Point>>contours;    
        findContours(src,contours,CV_RETR_LIST,CV_CHAIN_APPROX_SIMPLE);
        for (int i=0;i<contours.size();i++){
            int itmp =  contourArea(contours[i]);//这里采用的是轮廓大小
            if (imaxcontour < itmp ){
                imax = i;
                imaxcontour = itmp;
            }
        }
        return contours[imax];
    }
    //寻找并绘制出彩色联通区域
    vector<VPconnection2(Mat src,Matdraw){    
        draw = Mat::zeros(src.rows,src.cols,CV_8UC3);
        vector<VP>contours;    
        findContours(src.clone(),contours,CV_RETR_LIST,CV_CHAIN_APPROX_SIMPLE);
        //由于给大的区域着色会覆盖小的区域,所以首先进行排序操作
        //冒泡排序,由小到大排序
        VP vptmp;
        for(int i=1;i<contours.size();i++){
            for(int j=contours.size()-1;j>=i;j--){
                if (contourArea(contours[j]) < contourArea(contours[j-1]))
                {
                    vptmp = contours[j-1];
                    contours[j-1] = contours[j];
                    contours[j] = vptmp;
                }
            }
        }
在OpenCV3中有了新的专门的函数
 cv::connectedComponents() 
和函数
 cv::connectedComponentsWithStats()
定义:
int  cv::connectedComponents (
    cv::InputArrayn image,                // input 8-bit single-channel (binary)
    cv::OutputArray labels,               // output label map
    int             connectivity = 8,     // 4- or 8-connected components
    int             ltype        = CV_32S // Output label type (CV_32S or CV_16U)
    );
int  cv::connectedComponentsWithStats (
    cv::InputArrayn image,                // input 8-bit single-channel (binary)
    cv::OutputArray labels,               // output label map
    cv::OutputArray stats,                // Nx5 matrix (CV_32S) of statistics:
   
    
    
    
    
    
    
    
    
    
    
    
    
    
 
 
// [x0, y0, width0, height0, area0;
    
    
    
    
    
    
    
    
    
    
    
    
    
    
 
//  ... ; x(N-1), y(N-1), width(N-1),
    
    
    
    
    
    
    
    
    
    
    
    
    
    
   
// height(N-1), area(N-1)]
    cv::OutputArray centroids,            // Nx2 CV_64F matrix of centroids:
    
    
    
    
    
    
    
    
    
    
    
    
    
    
   
// [ cx0, cy0; ... ; cx(N-1), cy(N-1)]
    int             connectivity = 8,     // 4- or 8-connected components
    int             ltype        = CV_32S // Output label type (CV_32S or CV_16U)
    );
其中,新出现的参数
stats:长这样
img_749ab45cf7604991085a8bb1049cfdd7.png
分别对应各个轮廓的x,y,width,height和面积。注意0的区域标识的是background
centroids则对应的是中心点
而label则对应于表示是当前像素是第几个轮廓
例子:
对于图像
img_5f8042a6c3d5e395778f7a7b3a8fb33d.png
     Mat img = cv::imread"e:/sandbox/rect.png",0); 
    cv::Mat  img_edgelabelsimg_colorstats,centroids;
    cv::threshold(imgimg_edge, 128, 255, cv::THRESH_BINARY);
    bitwise_not(img_edge,img_edge);
    cv::imshow("Image after threshold"img_edge);
    int inccomps = cv::connectedComponentsWithStats (
        img_edgelabels,
        statscentroids
        );
    cout << "Total Connected Components Detected: " << nccomps << endl;
    vector<cv::Vec3bcolors(nccomps+1);
    colors[0] = Vec3b(0,0,0); // background pixels remain black.
    fori = 1; i < nccompsi++ ) {
        colors[i] = Vec3b(rand()%256, rand()%256, rand()%256);
        ifstats.at<int>(icv::CC_STAT_AREA) < 200 )
            colors[i] = Vec3b(0,0,0); // small regions are painted with black too.
    }
    img_color = Mat::zeros(img.size(), CV_8UC3);
    forint y = 0; y < img_color.rowsy++ )
        forint x = 0; x < img_color.colsx++ )
        {
            int label = labels.at<int>(yx);
            CV_Assert(0 <= label && label <= nccomps);
            img_color.at<cv::Vec3b>(yx) = colors[label];
        }
    cv::imshow("Labeled map"img_color);
    cv::waitKey();
注意:
1、对于OpenCV来说,白色代表有数据,黑色代表没有数据,所以图像输入之前要转换成”黑底白图“
2、看
labels
 和 
stats,其中第1 2 6 个的面积小于200
img_6d542b8747a21fe2a034c9b674052b5e.png
而labels中
img_cce02fa3261beff75bb27c8c591e35c3.gif
完全对的上号,结果为
img_92adae0c24c929bb7493a448c5a17d40.png
目前方向:图像拼接融合、图像识别 联系方式:jsxyhelu@foxmail.com

转载地址:http://eshna.baihongyu.com/

你可能感兴趣的文章
Notepad++ 16进制编辑功能
查看>>
DICOM:DICOM标准学习路线图(初稿)
查看>>
常用Dockerfile举例
查看>>
Java NIO6:选择器2---代码篇
查看>>
摘要算法
查看>>
css3 实现逐帧动画
查看>>
zabbix监控交换机、防火墙等网络设备
查看>>
http://www.cnblogs.com/jqyp/archive/2010/08/20/1805041.html
查看>>
WPF样式动画Trigger.EnterActions和Trigger.ExitActions(ExitActions其实可以不做任何事情)
查看>>
Linux IPC System V 消息队列
查看>>
史上最全的 UIWebview 的 JS 与 OC 交互
查看>>
RedHat下安装MySQL
查看>>
SQL Server 2016 需要单独安装 SSMS
查看>>
[译]AngularJS $apply, $digest, 和$evalAsync的比较
查看>>
小尝试一下 cocos2d
查看>>
Android 基于Android的手机邮件收发(JavaMail)之四(邮件的发送)
查看>>
BUPT2017 wintertraining(15) #3 题解
查看>>
js-ES6学习笔记-Set和Map数据结构
查看>>
Xamarin.Forms的滚动视图ScrollView
查看>>
【面试题整理】数据库的优化方案有哪些
查看>>