Ideas how to measure skeleton length using python

After applying skeletonization in the image (),enter image description here

I want to measure the longest branch, or skeleton spine, using python. ImageJ has several tools that do this job: Measure_Skeleton_length , another AnalyzeSkeleton . Any tools or suggestions in python?

+4
source share
1 answer

I don't know for python tools, but here is a way to do it from an algorithmic point of view:

  • Detection of all extreme pixels (last pixel on the branch, so pixels with only one neighbor)
  • , .

, , . 1 - , Python, 2.

+1

Source: https://habr.com/ru/post/1617874/


All Articles