I'm working on an example where I'm getting a logical error possibly. I want to replace every element of a matrix by the minimum of its neighborhood.

1 次查看(过去 30 天)
I've written the following piece of code. But it's not running and giving an error which I'm unable to figure out.
z = rgb2gray(imread('gantrycrane.png')); figure, imshow(z)
for i = 2:263
N = 0;
for j = 2:399
for k = (i-1)+N:(i+1)+N
for l = j-1:j+1
if(z(k,l)>z(i,j))
z(i,j)=z(k,l);
end
end
end
N = N+1;
end
end

采纳的回答

Simon Chan
Simon Chan 2021-8-21
The value of N will be very large in the loop and gives an error.
Try the following to replace each element of the matrix by by the minimum value of its neighborhood (including the element itself).
for r = 2:263
for c = 2:399
region = z(r-1:r+1,c-1:c+1); % Extract the neighborhood for each element
z(r,c) = min(min(region));
end
end
  6 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by