Info

此问题已关闭。 请重新打开它进行编辑或回答。

how to normalize all numerical parameters in an image.

1 次查看(过去 30 天)
for example , here it is written:
"J = imnoise(I,type,parameters) Depending on type, you can specify additional parameters to imnoise. All numerical parameters are normalized; they correspond to operations with images with intensities ranging from 0 to 1."
IT IS WRITTEN THAT ALL NUMERICAL PARAMETERS SHOULD BE NORMALIZED.. CAN ANYONE TELL ME THE COADING TO NORMALIZE THE NUMERICAL PARAMETERS AS I HAVE TO APPLY imnoise FUNCTION TO ADD SALT AND PEPPER NOISE. PLEASE HELP ME WITH THE CODING.

回答(1 个)

Image Analyst
Image Analyst 2015-4-7
For Salt and Pepper noise, they don't need to be normalized - that's only for things like Gaussian noise. See this snippet as proof.
grayImage = imread('cameraman.tif');
subplot(1,2,1);
imshow(grayImage);
noisyImage = imnoise(grayImage,'salt & pepper', .1)
subplot(1,2, 2);
imshow(noisyImage);

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by