开发者

Function imnoise() in Matlab

Why is the mean for imnoise() limited to [0,1]? Is t开发者_JS百科here a way to extend it?


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

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


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜