【OpenCV】腐蚀膨胀

腐蚀:
  Erosion is the sister of dilation. It computes a local minimum over the area of given kernel.

膨胀:
  compute the maximal pixel value overlapped by B and replace the image pixel in the anchor point position with that maximal value.


代码示例

#include "opencv2/imgproc.hpp"
#include "opencv2/imgcodecs.hpp"
#include "opencv2/highgui.hpp"

using namespace cv;

Mat src, erosion_dst, dilation_dst;

int erosion_elem = 0;
int erosion_size = 0;
int dilation_elem = 0;
int dilation_size = 0;
int const max_elem = 2;
int const max_kernel_size = 21;

void Erosion(int, void*);
void Dilation(int, void*);

int main(int, char** argv)
{
    const char* filename = "../data/lena.jpg";
    src = imread(filename, IMREAD_COLOR);
    if (src.empty())
    {   
        return -1;
    }

    namedWindow("Erosion Demo", WINDOW_AUTOSIZE);
    namedWindow("Dilation Demo", WINDOW_AUTOSIZE);
    moveWindow("Dilation Demo", src.cols, 0);

    createTrackbar("Element", "Erosion Demo",                                   // 腐蚀方法
        &erosion_elem, max_elem, Erosion);

    createTrackbar("Kernel", "Erosion Demo",                                    // 腐蚀掩模大小
        &erosion_size, max_kernel_size, Erosion);   

    createTrackbar("Element", "Dilation Demo",                                  // 膨胀方法
        &dilation_elem, max_elem, Dilation);

    createTrackbar("Kernel", "Dilation Demo",                                   // 膨胀掩模大小
        &dilation_size, max_kernel_size, Dilation);

    Erosion(0, 0);
    Dilation(0, 0);

    waitKey(0);
    return 0;
}

void Erosion(int, void*)
{
    int erosion_type = 0;
    if (erosion_elem == 0)      { erosion_type = MORPH_RECT; }
    else if (erosion_elem == 1) { erosion_type = MORPH_CROSS; }
    else if (erosion_elem == 2) { erosion_type = MORPH_ELLIPSE; }

    Mat element = getStructuringElement(erosion_type, 
        Size(2 * erosion_size + 1, 2 * erosion_size + 1),   Point(erosion_size, erosion_size));

    erode(src, erosion_dst, element);                                           // 腐蚀
    imshow("Erosion Demo", erosion_dst);
}

void Dilation(int, void*)
{
    int dilation_type = 0;
        if (dilation_elem == 0)      { dilation_type = MORPH_RECT; }            // 矩形
        else if (dilation_elem == 1) { dilation_type = MORPH_CROSS; }           // 十字型
        else if (dilation_elem == 2) { dilation_type = MORPH_ELLIPSE; }         // 椭圆

    Mat element = getStructuringElement(dilation_type, 
        Size(2 * dilation_size + 1, 2 * dilation_size + 1), Point(dilation_size, dilation_size));

    dilate(src, dilation_dst, element);                                         // 膨胀
    imshow("Dilation Demo", dilation_dst);
}


运行结果


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值