필터 지우기
필터 지우기

can you pls tell me the logic for this code?

조회 수: 1 (최근 30일)
ASHA
ASHA 2014년 1월 24일
편집: Azzi Abdelmalek 2014년 1월 24일
sd = 1;
[M,N] = size(a1);
r = imnoise2('rayleigh',M,N,0,1);
figure;imshow(r),title('Noise to be added');
c = find(r == 1);
gp = a1;
gp(c) = 255;
r = uint8(r);
figure;imshow(gp+r),title('Image after adding Multiplicative Rayleigh Noise');
fp = imrest(gp,'chmean',3,3,-5.5);
figure;imshow(fp),title('Image after removing Multiplicative Rayleigh Noise')

답변 (0개)

제품

Community Treasure Hunt

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

Start Hunting!

Translated by