1 #define PAIRS_HT_ENTRY 2001
2 #define PGH_SERR_TYPE 2002
3
4 typedef struct pairs_HT_entry{
5
6 Line2 *scene_line;
7 Vec2 perp_vec;
8 double scale;
9 double smin;
10 double smax;
11
12 }Pairs_HT_entry;
13
14 typedef struct pgh_serr{
15
16 double smax;
17 double smin;
18
19 }Pgh_serr;
20
21 void pgh_plot_interclass(List *pairs_list, int bins);
22 void pgh_plot_scale_falloff();
23 void pgh_plot_scale_space();
24 void pgh_scale_test(char *path, char *name);
25 void pgh_loc_accuracy(char *model_name, int trials);
26
27
28 Imrect *im_rotate(Imrect *im, double angle, Vec2 *im_center);
29 void poly_addgaussnoise(List *geom, double sigma);
30 void monoim_to_file(char *path);
31 void write_pgh_vector_file(char *path);
32 void pgh_show_useful_lines();
33 void pgh_fragment_scene_data(double k);
34 void pgh_fragment_test(double k_step);
35 List *pgh_clutter_scene_data(double s);
36 void pgh_clutter_test(double s_step);
37
38 List *geom2pgh_clutter(List *geom, List *full_geom, List *scene_pairs_list, double min_length, double window_r);
39 double pgh_occlude_scene_data(double k);
40 void pgh_occlude_test(double k_step);
41 double im_get_quadcovar(Imrect * image, double x, double y, float *px, float *py, Mat2 *C);
42 void hough2_plot_ellipse(Imrect *hough2, Vec2 *c, Mat2 *C, double weight);
43 Vec2 *hough2_locate_max_peak(Imrect *hough2, double thres);
44 void sqrt_hough2(Imrect *hough2);
45 void pgh_scale_test2(double scale_min, double scale_max, int num_scales, int num_trials, char *model_name);
46
47
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.