/* Raster skeleton retrieval function - to be included into cvaux.h
(as soon as more efficient algorithm will be implemented :)*/
#ifndef _CVSKELETON_H_
#define _CVSKELETON_H_
//
// Finds skeleton for given image using specified algorithm
//
// image - input/output raster image that must have 8uC1 or 8sC1 format.
// method - processing method.
// Currently, only classical Pavlidis 9.3 algorithm is available
//
#define CV_SKEL_PAVLIDIS 1
OPENCVAPI void
cvRasterSkeleton( IplImage* image,
int method CV_DEFAULT (CV_SKEL_PAVLIDIS));
#endif/*_CVSKELETON_H_*/