How to add uniform noise to an image using imnoise. is there defind Description like 'gaussian', 'speckle' etc.
2 次查看(过去 30 天)
显示 更早的评论
How to add uniform noise to an image using imnoise. is there defined Description like 'gaussian', 'speckle' etc.
0 个评论
采纳的回答
Walter Roberson
2013-3-30
imnoise() does not support uniform noise.
NewImage = OldImage + scale * rand(size(OldImage));
where scale is the maximum magnitude you want to use.
Note: if the image is a floating point data class, you should use
NewImage = min(1, OldImage + scale * rand(size(OldImage)));
0 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!