How to find the neighbourhood of a pixel

1 次查看(过去 30 天)
How to find a particular pixel and the neighbourhood of it?

回答(1 个)

Andrei Bobrov
Andrei Bobrov 2012-9-4
编辑:Andrei Bobrov 2012-9-4
try this code (need have Image Processing Toolbox)
I = rand(10) > .9 % initial array
out = imdilate(I,ones(3)) - I;
OR
out = bwmorph(I,'dilate')-I
OR
out = bwdist(I,'chessboard') == 1;

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by