zoukankan      html  css  js  c++  java
  • OpenCv 025---图像去噪

    1 前备知识

    图像去噪声在OCR、机器人视觉与机器视觉领域应用开发中是重要的图像预处理手段之一,对图像二值化与二值分析很有帮助,OpenCV中常见的图像去噪声的方法有

    - 均值去噪声

    - 高斯模糊去噪声

    - 非局部均值去噪声

    - 双边滤波去噪声

    - 形态学去噪声

    2 所用到的主要OpenCv API

    /** @brief Blurs an image using the normalized box filter.
    @param src input image; it can have any number of channels, which are processed independently, but
    the depth should be CV_8U, CV_16U, CV_16S, CV_32F or CV_64F.
    @param dst output image of the same size and type as src.
    @param ksize blurring kernel size.
    @param anchor anchor point; default value Point(-1,-1) means that the anchor is at the kernel
    center.
    @param borderType border mode used to extrapolate pixels outside of the image, see #BorderTypes
    @sa  boxFilter, bilateralFilter, GaussianBlur, medianBlur
     */
    CV_EXPORTS_W void blur( InputArray src, OutputArray dst,
                            Size ksize, Point anchor = Point(-1,-1),
                            int borderType = BORDER_DEFAULT );
    /** @brief Blurs an image using a Gaussian filter.
    @param src input image; the image can have any number of channels, which are processed
    independently, but the depth should be CV_8U, CV_16U, CV_16S, CV_32F or CV_64F.
    @param dst output image of the same size and type as src.
    @param ksize Gaussian kernel size. ksize.width and ksize.height can differ but they both must be
    positive and odd. Or, they can be zero's and then they are computed from sigma.
    @param sigmaX Gaussian kernel standard deviation in X direction.
    @param sigmaY Gaussian kernel standard deviation in Y direction; if sigmaY is zero, it is set to be
    equal to sigmaX, if both sigmas are zeros, they are computed from ksize.width and ksize.height,
    respectively (see #getGaussianKernel for details); to fully control the result regardless of
    possible future modifications of all this semantics, it is recommended to specify all of ksize,
    sigmaX, and sigmaY.
    @param borderType pixel extrapolation method, see #BorderTypes
    @sa  sepFilter2D, filter2D, blur, boxFilter, bilateralFilter, medianBlur
     */
    CV_EXPORTS_W void GaussianBlur( InputArray src, OutputArray dst, Size ksize,
                                    double sigmaX, double sigmaY = 0,
                                    int borderType = BORDER_DEFAULT );
    /** @brief Blurs an image using the median filter.
    @note The median filter uses #BORDER_REPLICATE internally to cope with border pixels, see #BorderTypes
    @param src input 1-, 3-, or 4-channel image; when ksize is 3 or 5, the image depth should be
    CV_8U, CV_16U, or CV_32F, for larger aperture sizes, it can only be CV_8U.
    @param dst destination array of the same size and type as src.
    @param ksize aperture linear size; it must be odd and greater than 1, for example: 3, 5, 7 ...
    @sa  bilateralFilter, blur, boxFilter, GaussianBlur
     */
    CV_EXPORTS_W void medianBlur( InputArray src, OutputArray dst, int ksize );
    /** @brief Modification of fastNlMeansDenoising function for colored images //彩色图像快速降噪功能的改进
    @param src Input 8-bit 3-channel image.
    @param dst Output image with the same size and type as src .
    @param templateWindowSize Size in pixels of the template patch that is used to compute weights.
    Should be odd. Recommended value 7 pixels
    @param searchWindowSize Size in pixels of the window that is used to compute weighted average for
    given pixel. Should be odd. Affect performance linearly: greater searchWindowsSize - greater
    denoising time. Recommended value 21 pixels
    @param h Parameter regulating filter strength for luminance component. Bigger h value perfectly
    removes noise but also removes image details, smaller h value preserves details but also preserves
    some noise
    @param hColor The same as h but for color components. For most images value equals 10
    will be enough to remove colored noise and do not distort colors
    
    The function converts image to CIELAB colorspace and then separately denoise L and AB components
    with given h parameters using fastNlMeansDenoising function.
     */
    CV_EXPORTS_W void fastNlMeansDenoisingColored( InputArray src, OutputArray dst,
            float h = 3, float hColor = 3,
            int templateWindowSize = 7, int searchWindowSize = 21);

    3 程序代码

    #include <opencv2/opencv.hpp>
    #include <iostream>
    
    using namespace cv;
    using namespace std;
    
    void add_salt_pepper_noise(Mat &image);
    void gaussian_noise(Mat &image);
    int main(int artc, char** argv) {
        Mat src = imread("images/lena.png");
        if (src.empty()) {
            printf("could not load image...
    ");
            return -1;
        }
        namedWindow("input", CV_WINDOW_AUTOSIZE);
        imshow("input", src);
        gaussian_noise(src);
    
        Mat result1, result2, result3, result4;
        blur(src, result1, Size(5, 5));
        imshow("result-blur", result1);
    
        GaussianBlur(src, result2, Size(5, 5), 0);
        imshow("result-gaussBlur", result2);
    
        medianBlur(src, result3, 5);
        imshow("result-medianBlur", result3);
    
        fastNlMeansDenoisingColored(src, result4, 15, 15, 10, 30);
        imshow("result-fastN1MDC", result4);
    
        waitKey(0);
        return 0;
    }
    
    void add_salt_pepper_noise(Mat &image) {
        RNG rng(12345);
        int h = image.rows;
        int w = image.cols;
        int nums = 10000;
        for (int i = 0; i < nums; i++) {
            int x = rng.uniform(0, w);
            int y = rng.uniform(0, h);
            if (i % 2 == 1) {
                image.at<Vec3b>(y, x) = Vec3b(255, 255, 255);
            }
            else {
                image.at<Vec3b>(y, x) = Vec3b(0, 0, 0);
            }
        }
        imshow("salt pepper", image);
    }
    
    void gaussian_noise(Mat &image) {
        Mat noise = Mat::zeros(image.size(), image.type());
        randn(noise, (15, 15, 15), (30, 30, 30));
        Mat dst;
        add(image, noise, dst);
        imshow("gaussian noise", dst);
        dst.copyTo(image);
    }

    4 运行结果

    5 扩展及注意事项

    6*目前只做大概了解,知道有这一算法接口,后续具体使用再做具体分析

    One day,I will say "I did it"
  • 相关阅读:
    oracle客户端连接服务器基本教程
    java中字符串处理、串联和转换的几个常用方法,以及如果需要自己编程实现的具体实施步骤。
    面试相关
    java中byte是什么类型,和int有什么区别
    (华为机试大备战)java。多了解了解最常用的那个类库的方法对处理字符串的方法
    (华为)以下代码片段将创建一个仅保存大写字符的字段。
    (华为)以下代码片段将创建一个仅保存大写字符的字段。
    每个程序中只有一个public类,主类?
    我的第一个长程序,虽然是直接抄了书上,可是还是出现了两次拼写错误,最终还是找到异常的答案,改过来了。
    实践证明:当类想实现两个监听接口的时候,必须把两个都设置成内部类,不可能一个是外部类实现,一个是内部类实现。这样容易捕获错误,出现异常。
  • 原文地址:https://www.cnblogs.com/Vince-Wu/p/11840162.html
Copyright © 2011-2022 走看看