Javatpoint Logo
Javatpoint Logo

FastNlMeansDenoising in Python

In this article, we will learn about noise, various types of noises, Image denoising, Image Denoising with OpenCV, nonlocal means algorithms in OpenCV, and fastNlMeansDenosiong functions in OpenCV.

fastNIMeansDenoising is a method of OpenCV module. This is used to denoise the image. The process of taking out undesirable noise from an image before analysis is called denoising. It refers to a significant preprocessing phase.

Denoising is one of the most important phases of preprocessing the image. It is used to remove the noise from the image so let's first understand what the noise is.

Noise in Image

The presence of defects in an image is known as noise that is unrelated to the underlying scene content. Statistical variations of a measurement produced by a random process are, in general, considered to be noise. In imaging, noise manifests as an artifact that covers the image in a grainy texture.

In an image, noise can take on a variety of shapes and manifestations and is typically an unwelcome or distressing artifact that degrades the subjective visual quality.

The image has two main types of noise

1. Salt and paper noise: It features sporadic dark and light disruptions.

The distinguishing feature is that the value of a noisy pixel has no bearing on the color of other pixels. The pixels in the image are significantly different from one another in color or intensity from their surrounding pixels. In most cases, this kind of noise will only have a little impact on a few image pixels. The name "salt and pepper noise" refers to the appearance of the image, which contains white and dark dots.

2. Gaussian noise: A (typically) modest amount will be added or subtracted from each pixel's original value in the image. A histogram, which displays a normal distribution of noise, plots the degree of distortion of a pixel value against its frequency. Although other distributions are feasible, the central limit theorem, which states that the total of several noises tends to approach a Gaussian distribution, makes the Gaussian (normal) distribution a generally reliable model.

Now we have to understand, what noise in images is. Now it's time to understand what is denoising.

Image Denoising

Image denoising is one of the fundamental problems in computer vision and image processing. Denoising estimates the original image by reducing the amount of noise in the image. Image noise can come from a variety of sources (such as the environment or the sensor), and in real-world applications, it's frequently impossible to prevent them.

In light of this, picture denoising is crucial in a variety of applications, including image restoration, visual tracking, image registration, and image segmentation. Even though a variety of algorithms have been put out for the goal of image denoising, the issue of image noise suppression continues to be a difficult one, particularly when the photographs are taken in unfavorable conditions and have a high degree of noise.

Now we have seen what is the image denoising. Now we will understand the various method of openCV to denoising the image.

Image Denoising by Using OpenCV

The OpenCV module has various nonlocal means algorithms to denoise the image. Before seeing the various method in OpenCV let's understand the mean of nonlocal mean algorithms

Nonlocal means algorithm

The fundamental principle of the nonlocal means algorithm is to average the colors of many image sub-windows that are similar to the one that makes up the pixel neighborhood to replace the color of a pixel.

We now know what the nonlocal means algorithm's mean is. Now let's look at the various functions in the OpenCV module to denoise the image.

There are four versions of this algorithm are available in OpenCV.

  1. fastNlMeansDenoising(): This function only operates on a single grayscale image.
  2. fastNlMeansDenoisingColored(): This function is works with the colored images.
  3. fastNlMeansDenoisingMulti(): With image sequences taken in a brief amount of time, this function operates. It also operates on single grayscale images.
  4. fastNlMeansDenoisingColoredMulti(): With image sequences taken in a brief amount of time, this function operates. But it is used with colored images.

fastNlMeansDenoising() Function in Python

It is a nonlocal means algorithm base function. This function is used with single gray-scale images to denoise the image.

Syntax of the fastNlMeansDenoising() function

Parameter of the fastNlMeansDenoising() function

  1. src: This the required parameter of the fastNlMeansDenoising() function. It takes the Input 8-bit 1-channel, 2-channel, 3-channel, or 4-channel image.
  2. Dst: dst is the output or resultant image. The size of the output image is the same as the size of the input image or the src image.
  3. templateWindowSize: The template patch's size in pixels when computing weights. The value of this parameter should be the odd integer. The recommended size of the tamplalteWindowSize parameter should be 7.
  4. searchWindowSize: The window's size in pixels is what is utilized to calculate the weighted average for a specific pixel. The value of the parameter should be the odd integer. It affects the performance of function linearly. If the search window size is large, it will take more time to denoise the image. 21 is the recommended value of the parameter.
  5. H: Smaller h values preserve picture details while preserving some noise, while larger h values perfectly remove noise while also removing image details.

Note: The function transforms the image to CIELAB colorspace and uses the fastNlMeansDenoising function to independently denoise the L and AB components with the supplied h parameters.

Let's understand how we can remove the noise from the image with the help of an example

Removing the salt and paper noise from the image

Random bright pixels and random dark pixels are added to an image to add salt and pepper noise. Because it statistically reduces the original data values, this model is often referred to as data drop noise. Source: A camera's sensor cell that is malfunctioning.

FastNlMeansDenoising in Python

In the above image, we have seen the salt and paper noise. The image has some bright pixels in the dark area. So let's see the python code to reduce or remove the salt and paper noise with the help of the openCV module.

Output:

FastNlMeansDenoising in Python

In the above example, we first imported all the required libraries in the code. This is a salt and paper noise image. Now we will use cv2.imread() image to read the image. The image should be a black and white 1-channel, 2-channel, 3-channel, or 4-channel image. Now we will use the cv2.fastMlMeansDenoising() to denoise the salt and paper noise. Now we will use the pyplot to visualize the image.

Removing the gaussian noise from the image

The most prevalent kind of noise in digital images is gaussian. Due to sensor constraints during picture collection in low-light situations, which make it challenging for the visible light sensors to adequately record scene details, Gaussian noise occurs in digital imaging.

FastNlMeansDenoising in Python

In the above example, we have seen that the image is noisy. This image is an example of Gaussian noise. Let's see the python code to remove the gaussian noise with the help of the openCV module.

Output

FastNlMeansDenoising in Python

In the above example, we first imported all the required libraries in the code. This is a gaussian noise image. Now we will use cv2.imread() image to read the image. The image should be a black and white 1-channel, 2-channel, 3-channel, or 4-channel image. Now we will use the cv2.fastMlMeansDenoising() to denoise the salt and paper noise. Now we will use the pyplot to visualize the image.

Conclusion

In this article, we have discussed noise various types of noises. Then we have discussed what Image denoising and its features it is and, Image Denoising with OpenCV and nonlocal means algorithms in OpenCV, and fastNlMeansDenosiong functions in OpenCV.


Next TopicPython Email.utils





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA