00001 00002 00003 #ifndef __IMAGER_MORPHOP_H__ 00004 #define __IMAGER_MORPHOP_H__ 00005 00006 #include "defs.h" 00007 00008 void make_fatetbl(); 00009 00010 void skeletonize (image_type* img, int slice, float threshold); 00011 void skel_prune (image_type *img, int prunelen); 00012 void skel_statistics (image_type* img, char* report); 00013 void skel_main (); 00014 00015 float morph_val_float (MORPHOP what, float* m, int n, float origval); 00016 int morph_val_int (MORPHOP what, int* m, int n, int origval); 00017 void morph_img (image_type* img, MORPHOP what, int z, int foureight); 00018 void morph_main (); 00019 00020 00021 00022 #endif