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.
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.
You can also find "skeleton" of the image. OpenCV function: "cv.ximgproc.thinning()"
Scikit-Image function: "skimage.morphology.skeletonize()"