1 /**********
2 *
3 * This file is part of the TINA Open Source Image Analysis Environment
4 * henceforth known as TINA
5 *
6 * TINA is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License as
8 * published by the Free Software Foundation.
9 *
10 * TINA is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public License
16 * along with TINA; if not, write to the Free Software Foundation, Inc.,
17 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 *
19 **********
20 *
21 * Program : TINA
22 * File : $Source: /home/tina/cvs/tina-libs/tina/vision/visPgh_var.h,v $
23 * Date : $Date: 2003/10/06 12:29:48 $
24 * Version : $Revision: 1.3 $
25 * CVS Id : $Id: visPgh_var.h,v 1.3 2003/10/06 12:29:48 neil Exp $
26 *
27 * Author : Legacy TINA
28 *
29 * Notes :
30 *
31 *********
32 */
33
34 #ifndef TINA_VIS_PGH_VAR_HDR
35 #define TINA_VIS_PGH_VAR_HDR
36
37 #include <tina/vision/visPgh_types.h>
38
39 #ifdef __cplusplus
40 extern "C" {
41 #endif /* __cplusplus */
42
43 void pairs_hist_def_set(Pairs_hist_def *def);
44 Pairs_hist_def *pairs_hist_def_get(void);
45 void pairs_scale_def_set(Pairs_scale_def *def);
46 Pairs_scale_def *pairs_scale_def_get();
47 void pairs_hough_def_set(Pairs_hough_def *def);
48 Pairs_hough_def *pairs_hough_def_get(void);
49 void pairs_match_cut_def_set(Match_cut_def *def);
50 Match_cut_def *pairs_match_cut_def_get(void);
51 void pairs_model_poly_list_set(List *list);
52 List *pairs_model_poly_list_get(void);
53 void pairs_scene_pairs_list_set(List *list);
54 List *pairs_scene_pairs_list_get(void);
55 void pairs_model_pairs_list_set(List *list);
56 List *pairs_model_pairs_list_get(void);
57 void pairs_matched_models_list_set(List *list);
58 List *pairs_matched_models_list_get(void);
59 void pairs_matched_line_set(Line2 *line);
60 Line2 *pairs_matched_line_get(void);
61 void pairs_picked_geom_set(List *geom);
62 List *pairs_picked_geom_get(void);
63 void pairs_model_geom_set(List *list);
64 List * pairs_model_geom_get(void);
65 void get_model_pair_list(int *points_x, int *points_y);
66 int get_model_pair_list_dimension();
67 void segmented_lines_set(List *list);
68 void get_matched_model_list(int *points_x, int *points_y);
69 int get_match_model_list_dimension();
70
71 #ifdef __cplusplus
72 }
73 #endif /* __cplusplus */
74 #endif /* TINA_VIS_PGH_VAR_HDR */
75
76
77
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.