Let's make some noise!
In this exercise, we'll practice adding noise to a fruit image.
fruit_image.
Diese Übung ist Teil des Kurses
<Kurs>Image Processing in Python</Kurs>Übungsanweisungen
- Import the
utilmodule and the random noise function. - Add noise to the image.
- Show the original and resulting image.
Interaktive praktische Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Import the module and function
from skimage.____ import ____
# Add noise to the image
noisy_image = ____
# Show original and resulting image
show_image(____, 'Original')
____(____, 'Noisy image')