Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Applying a blurring filter over an image is a way to reduce the noise that is produced when an image is taken by averaging out
Applying a blurring filter over an image is a way to reduce the noise that is produced when an image is taken by averaging out each pixel with its surrounding neighbour. This is often the first operation that is performed in an image processing task. To apply a blurring filter, you perform convolutions on every pixel over the entire image with a kernel. One example of such kernel is the Gaussian kernel. You have already seen it in the previous task. Since we are doing an average, we must take the result from the convolution and divide it by the sum of the components of our Gaussian kernel, which equals in our case. Note that It is not entirely true that we are going to perform the convolution over the entire image. Notice how our kernel is a x matrix and if we apply the convolution on the edge of the image the kernel will have nothing to multiply against. Therefore, we must ignore the edge of the image and start the convolution one pixel in and stop one pixel before the end. Using the example of our x image, we only perform the convolution function times. The next three diagrams show the convolution operation done on the first, the second and then the end results after it has been applied to the entire image.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started