Dear All, How can I find the medial axis of an image? Any clue is welcome.
On Thu, 12 Sep 2019 15:59:01 +0200 Nils Wagner via scikit-image scikit-image@python.org wrote:
Dear All, How can I find the medial axis of an image? Any clue is welcome.
Transpose the image horizontally and vertically and correlate with the original.
Here is an implementation: https://github.com/scikit-beam/scikit-beam/blob/master/skbeam/core/image.py#...