Clear Filters
Clear Filters

how can i add noise to the image??

1 view (last 30 days)
Ashitha
Ashitha on 31 Jul 2013
in matlab how can i add guassian noise to an image

Answers (2)

Evan
Evan on 31 Jul 2013
Do you have the image processing toolbox? If so, you might find imnoise useful.

Iain
Iain on 31 Jul 2013
my_noisy_image = cast(randn(size(my_image))*sigma,class(my_image)) + my_image;

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!