darshil
darshil

Reputation: 1

How can we insert Poisson and Speckle noise in image of particular variance?

In MATLAB we can add Gaussian noise of particular value of noise variance in images. How can we insert Poisson and Speckle noise of particular variance value in image?

Upvotes: 0

Views: 1741

Answers (1)

ben
ben

Reputation: 1390

the image processing toolbox of matlab contains a function called imnoise().

J = imnoise(I,'speckle',v)

adds speckle noise to the image I, n is uniformly distributed random noise with mean 0 and variance v.

J = imnoise(I,'poisson') generates Poisson noise from the data and adds that.

Upvotes: 1

Related Questions