how to use square filter with value 4 for erode function

2 次查看(过去 30 天)
f=imread('gee.jpg');
se=strel('train',4);
k=imerode(f,se);
imshow(k);

回答(1 个)

Image Analyst
Image Analyst 2016-3-14
'train' is not one of the options. Not sure what you want, but maybe you want to consider the 4 closest neighbors
grayImage = imread('gee.jpg');
se = [0,1,0; 1,0,1; 0,1,0];
erodedImage = imerode(grayImage , se);
imshow(erodedImage);

类别

Help CenterFile Exchange 中查找有关 Point Cloud Processing 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by