0

I'm loading a 3D CT model and doing thinning algorithms on it. Now I'd like to calculate how much thinning the algorithms do. How can I know the distances between skeleton points and their nearest/farthest boundary points?

Gagiel
  • 45
  • 5

1 Answers1

1

Compute the distance transform of the skeleton points and boundary points (stored as a binary mask). Your answer lies therin.

navneeth
  • 1,239
  • 12
  • 21