Borrar filtros
Borrar filtros

how to use square filter with value 4 for erode function

2 visualizaciones (últimos 30 días)
GEETHA KULALA
GEETHA KULALA el 14 de Mzo. de 2016
Respondida: Image Analyst el 14 de Mzo. de 2016
f=imread('gee.jpg');
se=strel('train',4);
k=imerode(f,se);
imshow(k);

Respuestas (1)

Image Analyst
Image Analyst el 14 de Mzo. de 2016
'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);

Categorías

Más información sobre Point Cloud Processing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by