Reducing noise while preserving edges
In this exercise, you will reduce the noise in this landscape picture.

landscape_image
.Since we prefer to preserve the edges in the image, we'll use the bilateral denoising filter.
Diese Übung ist Teil des Kurses
Image Processing in Python
Anleitung zur Übung
- Import the
denoise_bilateral
function from its module. - Apply bilateral filter denoising.
- Show the original noisy and the resulting denoised image.
Interaktive Übung zum Anfassen
Probieren Sie diese Übung aus, indem Sie diesen Beispielcode ausführen.
# Import bilateral denoising function
____
# Apply bilateral filter denoising
denoised_image = ____(____,
multichannel=____)
# Show original and resulting images
show_image(____, 'Noisy image')
show_image(____, 'Denoised image')