MATLAB: How to display the object created with function strel

displaymorphologystrel

How to display the object created with function strel?

Best Answer

AAA = strel('disk', 5);
AAA.Neighborhood
image(AAA.Neighborhood); colormap(gray(2));
Related Question