how can i add noise to the image??

Answers (2)

Evan
Evan on 31 Jul 2013
Do you have the image processing toolbox? If so, you might find imnoise useful.
my_noisy_image = cast(randn(size(my_image))*sigma,class(my_image)) + my_image;

Categories

Tags

Asked:

on 31 Jul 2013

Community Treasure Hunt

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

Start Hunting!