Adding poisson noise to an image

后端 未结 5 617
忘了有多久
忘了有多久 2021-01-06 09:55

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

5条回答
  •  隐瞒了意图╮
    2021-01-06 10:27

    You could use skimage.util.random_noise:

    from skimage.util import random_noise
    
    noisy = random_noise(img, mode="poisson")
    

提交回复
热议问题