How do I perform 3-dimensional dilation on my image array using the Image Processing Toolbox?
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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.
Akzeptierte Antwort
MathWorks Support Team
am 27 Jun. 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Read, Write, and Modify Image finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!