i was writing a code for mathematical morphology dilation operation for a 1D signal but did not get proper output. Kindly help me with the proper code

5 visualizaciones (últimos 30 días)
the code i wrote:
function y_dil=dilation(x,se)
L=length(se)
x=[zeros(1,L) x];
N=length(x)
k=1+L;
y_dil=zeros(1,N);
for n=k:N
for i=1:L
r(i)=max(x(n-i)+se(i))
end
Y_dil(k-L)=max(r);
k=k+1;
end
end

Respuestas (2)

Massimo Zanetti
Massimo Zanetti el 6 de Oct. de 2016
Use imdilate function which is already in Matlab. https://it.mathworks.com/help/images/ref/imdilate.html
For example, if your signal is SIGNAL matrix (1xN matrix), and your structuring element is SE=[1,1,1], try this:
DIL_SIGNAL = imdilate(SIGNAL,SE)
  4 comentarios

Iniciar sesión para comentar.


M E
M E el 13 de Jul. de 2019
Supporting the solution provided by Massimo, You can make costum length structuring elements:
DIL = imdilate(S,strel('line',Len,0))

Community Treasure Hunt

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

Start Hunting!

Translated by