0

I am trying to segment the center of the hand palm using its binary image (mask) and applying an erode with a quite big kernel. This takes to much time to process.

I am looking for an alternative that takes less time.

Raquel
  • 145
  • 1
  • 8
  • 1
    Try a distance transform as in [this answer](https://stackoverflow.com/a/53648903/1377097). – beaker Feb 19 '21 at 16:44

1 Answers1

0

You can also find "skeleton" of the image. OpenCV function: "cv.ximgproc.thinning()"

Scikit-Image function: "skimage.morphology.skeletonize()"

SKG
  • 145
  • 1
  • 8