Can you modify the code provided on given link.?
조회 수: 2 (최근 30일)
이전 댓글 표시
My question is related with above link.
I want to replace the center pixel of a 3x3 window filter with the average of four neighbour pixels in 3 x 3 neighbourhood.
Can anyone modify code provided on that link..?
댓글 수: 2
Geoff Hayes
2014년 12월 17일
Nimisha - which four of the 3x3 neighbourhood do you wish to average? The ones at the north, south, east, and west of the centre pixel?
채택된 답변
Thorsten
2014년 12월 17일
편집: Thorsten
2014년 12월 17일
Just convolve your data with the filter
F = [0 1 0; 1 0 1; 0 1 0]/4;
You can use imfilter for the convolution.
댓글 수: 2
Geoff Hayes
2014년 12월 18일
The error message is telling you that your inputs to conv must be vectors. You are passing matrices. Try using conv2 instead.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!