Question: Using only NumPy, write the Noiseify class, which adds random noise to an image to produce a grainy, aged-film effect. The code should add a
Using only NumPy, write the Noiseify class, which adds random noise to an image to produce a grainy, aged-film effect. The code should add a random number between 5 and 5, inclusive, to every Red, Green, and Blue value. Make sure that the pixel values do not fall outside of the range 0 255

class Noiseify(ImageEffect): | def apply(pixels: np.ndarray) -> np.ndarray
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
