dither
dither

Reputation: 11

Function imnoise() in Matlab

Why is the mean for imnoise() limited to [0,1]? Is there a way to extend it?

Upvotes: 1

Views: 1240

Answers (2)

second
second

Reputation: 28637

if you are just trying to add gaussian noise to yor image, you could do it 'manually'

>> image = image + mean*randn( size(mage) );

Upvotes: 3

mtrw
mtrw

Reputation: 35098

According to the documentation, all the numerical parameters for IMNOISE are normalized by the image intensity. 1 indicates the maximum intensity for the image. It isn't possible to set a pixel to a value outside that range.

Upvotes: 2

Related Questions