I have some images that I need to add incremental amounts of Poisson noise to in order to more thoroughly analyze them. I know you can do this in MATLAB, but how do you go a
You could use skimage.util.random_noise:
from skimage.util import random_noise noisy = random_noise(img, mode="poisson")