Define origin and length of the Strel function
1 view (last 30 days)
Show older comments
I'm trying to create the following structuring element (SE):
The underline bar represents the origin of the SE.
For example, if I want an SE of and with length equal to 3, how could I do it through the strel function?
0 Comments
Accepted Answer
DGM
on 22 Feb 2022
No need for strel().
A = false(7);
A(4,4) = true
st1 = [1 1 1 0 0 ];
B1 = imdilate(A,st1)
st2 = [0 0 1 1 1];
B2 = imdilate(A,st2)
More Answers (0)
See Also
Categories
Find more on 3-D Volumetric Image Processing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!