0

Regarding the ball structuring element mentioned here, how can we represent it as a matrix, the same as some structuring elements represented at the same page?

Charles
  • 50,943
  • 13
  • 104
  • 142
Simplicity
  • 47,404
  • 98
  • 256
  • 385

1 Answers1

0

strel('ball',radius,height)

Type this into matlab and it will display a matrix:

strel('ball',5,10)

The first matrix you get is the area and size of the ball as a matrix. The second matrix is the height of the each element of the ball.

Ben
  • 93
  • 1
  • 7