首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何利用中值滤波算法去除胡椒噪声

如何利用中值滤波算法去除胡椒噪声
EN

Stack Overflow用户
提问于 2019-11-21 04:15:30
回答 1查看 430关注 0票数 1

我编写了一个代码(在c++中),使用CImg库在图像中添加噪声。现在,我想用中值滤波算法加载带有噪声的图像,并去除图像中的这些噪声。下面是我的密码。

代码语言:javascript
复制
int main()
{
    int x;
    cout<<"Welcome to my app\n";
    cout<<"Choose options below\n";
    cout<<"1. Remove pepper    2. Add pepper\n";
    cin>>x;
    if (x==1)
    {
        cout<<"Needs help";
        /* 
        * i tried to change the noise level to 0 but it did not work like below 
        * image.noise(0,2); 
        * 
        */
    }
    else if(x==2)
    {
        //image file
        CImg<unsigned char> image("new.bmp");
        const unsigned char red[] = { 255,0,0 }, green[] = { 0,255,0 }, blue[] = { 0,0,255 };
        image.noise(100,2);
        image.save("new2.bmp");
        CImgDisplay main_disp(image, "Image with Pepper noise");
        while (!main_disp.is_closed())
            {
                main_disp.wait();               
            }
    }

    getchar();
    return 0;

}

如果有另一种使用CImg库的方法,我会感激的!!

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2019-11-21 07:59:17

根据本教程中位函数的定义,您将得到如下内容:

代码语言:javascript
复制
#include <algorithm>
using namespace std;
// ...
int ksize = 3; // 5, 7, N and so on... for NxN kernel
int ksize2 = ksize/2;
vector<uchar> kernel(ksize*ksize, 0);
for (int i=ksize2;i<image.dimx() - ksize2;i++)
    for (int j=ksize2;j<image.dimy() - ksize2;j++)
        for (int k=0;k<3;k++) {
            // prepare kernel
            int n = 0;
            for(int l = -ksize2; l <= ksize2; l++)
                for(int m = -ksize2; m <= ksize2; m++)
                    kernel[n++] = image(i + l,j + m,0,k); 

            // using std::algorithm to find median
            sort(kernel.begin(), kernel.end());

            // simple assign median value to created empty image
            medianFilteredImage(i, j, 0, k) = kernel[kernel.size()/2]; // median is here now
        }
    }
}
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/58967221

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档