필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

how to normalize all numerical parameters in an image.

조회 수: 1 (최근 30일)
ravneet
ravneet 2015년 4월 7일
마감: MATLAB Answer Bot 2021년 8월 20일
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