基于opencv的超声扇形区域检测(C++)

本文介绍了一种针对超声图像中用户操作界面干扰的解决方案,通过LargestConnectedComponent函数实现局部扇形区域检测,以提高病灶检测的准确性。方法包括灰度转换、阈值处理、形态学操作和最大连通区域查找。
摘要由CSDN通过智能技术生成

简介

从超声采集的图像会带有部分用户操作界面的组件,若使用全局图片进行病灶检测,操作界面的组件可能会对检测结果造成干扰,通过扇形区域检测可防止这种情况的出现。

Code

LargestConnecttedComponent函数出自该博客《opencv 获取图像最大连通域 c++和python版》

// 获取检测区域边界
cv::Rect GetBorder(cv::Mat img) {
    cv::Mat gray;
    // rgb转灰度图
    cvtColor(img, gray, cv::COLOR_BGR2GRAY);
    int counts[256] = { 0 };
    int value;
    // 统计0~255各颜色出现次数
    for (int row_id = 0; row_id < gray.rows; row_id++) {
        for (int col_id = 0; col_id < gray.cols; col_id++)
        {
            counts[(int)gray.at<uchar>(row_id, col_id)] += 1;
        }
    }
    // 找出出现次数最多的颜色
    int max_val = 0;
    int max_index = 0;
    for (int i = 0; i < 256; i++)
    {
        if (counts[i] > max_val) {
            max_index = i;
            max_val = counts[i];
        }
    }
 	
    cv::Mat thresh, morph_open_mat, morph_close_mat;
    // 阈值处理
    threshold(gray, thresh, max_index, 255, cv::THRESH_BINARY);
    // 定义kernel
    cv::Mat kernel = cv::getStructuringElement(cv::MORPH_RECT, cv::Size(1, 5));
    // 开运算
    morphologyEx(thresh, morph_open_mat, cv::MORPH_OPEN, kernel);
    // 闭运算
    morphologyEx(morph_open_mat, morph_close_mat, cv::MORPH_CLOSE, kernel);
    cv::Mat lcc_mat;
    // 最大连通区域检测
    LargestConnecttedComponent(morph_close_mat, lcc_mat);
    int max_x = 0, max_y = 0, min_x = gray.cols, min_y = gray.rows;
    // 找到矩形角点
    for (int row_id = 0; row_id < gray.rows; row_id++) {
        for (int col_id = 0; col_id < gray.cols; col_id++)
        {
            if ((int)lcc_mat.at<uchar>(row_id, col_id) == 255) {
                if (col_id > max_x) {
                    max_x = col_id;
                }
                if (col_id < min_x) {
                    min_x = col_id;
                }
                if (row_id > max_y) {
                    max_y = row_id;
                }
                if (row_id < min_y) {
                    min_y = row_id;
                }
            }
        }
    }
    // 返回角点
    cv::Rect rect(cv::Point(min_x, min_y), cv::Point(max_x, max_y));
    return rect;
}

效果

效果图

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Alex-Leung

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值