How do I perform 3-dimensional dilation on my image array using the Image Processing Toolbox?
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have tried using the "ball" option with the STREL function to create a 3-dimensional structure element for dilating my image:
s = strel('ball',3,3);
However, when I attempt to dilate the image with this structure element, I do not see the results I expect.
Respuesta aceptada
MathWorks Support Team
el 27 de Jun. de 2009
The following code:
strel('ball',3,3)
returns a 2-dimensional nonflat structuring element. Nonflat structuring elements are usually used for gray-scale dilation. Gray-scale dilation for the position (x,y) is defined as:
max{ f(x-x',y-y') + b(x',y') | (x',y') in b}
where "b" is the structuring element, and "(x',y')" are the relative locations in "b"s neighborhood. The values "b(x',y')" correspond to the strel object's "height". In this context, the term "ball" refers to the interpretation of a 2-dimensional grayscale image as a surface, and passing a ball "under" the surface.
For 3-dimensional binary dilation, you will need to create a sphere-shaped structuring element:
[x,y,z] = ndgrid(-3:3);
se = strel(sqrt(x.^2 + y.^2 + z.^2) <=3);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Read, Write, and Modify Image en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!