poisson_noise
- odl.core.phantom.noise.poisson_noise(intensity, seed=None)[source]
Poisson distributed noise with given intensity.
Parameters
- intensity
TensorSpaceorProductSpaceelement The intensity (usually called lambda) parameter of the noise.
Returns
- poisson_noise
intensity.spaceelement Poisson distributed random variable.
- seedint, optional
Random seed to use for generating the noise. For
None, use the current seed.
Notes
For a Poisson distributed random variable
with intensity
, the probability of it taking the value
is given by
Note that the function only takes integer values.
See Also
white_noise salt_pepper_noise uniform_noise numpy.random.poisson
- intensity