Skeletonization in opencv

Is there any specific function that can be used in opencv for skeletonization? Also, I searched for a while and want to know if opencv implements voronoi-skeleton (it seems that there is, but is it really)?

+5
source share
1 answer

It looks like Voronoi-Skeleton is implemented in functions _cvConstructSkeleton()and _cvLee()in opencv / src / cvaux / cvlee.cpp .

I have not seen the official documentation on how to use this feature in OpenCV. Since it cvlee.cppis located in a folder cvaux, I think that it can be experimental OpenCV functions.

+3
source

All Articles