00001 00002 00003 #ifndef __IMAGER_FRACTAL_H__ 00004 #define __IMAGER_FRACTAL_H__ 00005 00006 #include "defs.h" 00007 00008 00009 00010 fitresult boxdim2d (image_type* img, int z, int bmin, int bmax, float lthresh, float uthresh); 00011 fitresult manhattan_boxdim (image_type* img, int z, int bmin, int bmax, int oorflg); 00012 fitresult sausagedim (image_type* img, int z, int bmin, int bmax, float lthresh, float uthresh); 00013 fitresult mass_dimension (image_type* img, int z, int bmin, int bmax, int oorflag); 00014 fitresult dispersion_boxdim (image_type* img, int z, int bmin, int bmax, int oorflg); 00015 00016 void boxdim_main (); 00017 00018 00019 void rose_plot (image_type* img, int z, int freqstart, int freqend, int rose_max); 00020 float rose_plot_for_macro (image_type* fftimg, int numpts, int maxlen); 00021 void roseplot_main (); 00022 00023 void hoelder (image_type* img, int slice, int rmax); 00024 void hoelder_massdim_clickif (); 00025 void local_hoelder_main (int nghsize); 00026 00027 void sierp_carpet (image_type* img, int z, float thresh); 00028 void sierp_iterator (image_type* img, int z, float thresh); 00029 00030 00031 #endif