필터 지우기
필터 지우기

How to remove checkerboard kind of effect in the output image

조회 수: 3 (최근 30일)
Richa Sharma
Richa Sharma 2015년 11월 2일
편집: Walter Roberson 2015년 11월 2일
I divided my image (1280*640) into non-overlap blocks of 128*128 and applied Gabor filter on each block. When I visualise the filtered output in the form of a single image back(1280*640), I see checkerboard kind of effect in the output image. How to remove this? Following is the matlab code used for block processing-
for x=1:128:row
for yx=1:128:col
[G1,G2,gabout1,gabout2]=gaborfilter2(im2,Sx,Sy,f,theta);
T1(x:x+127,yx:yx+127)=gabout1;
T2(x:x+127,yx:yx+127)=gabout2;
end
end
subplot(121);imshow(T1);
subplot(122);imshow(T2);

답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by