1 /**********
2 *
3 * Copyright (c) 2003, Division of Imaging Science and Biomedical Engineering,
4 * University of Manchester, UK. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without modification,
7 * are permitted provided that the following conditions are met:
8 *
9 * . Redistributions of source code must retain the above copyright notice,
10 * this list of conditions and the following disclaimer.
11 *
12 * . Redistributions in binary form must reproduce the above copyright notice,
13 * this list of conditions and the following disclaimer in the documentation
14 * and/or other materials provided with the distribution.
15 *
16 * . Neither the name of the University of Manchester nor the names of its
17 * contributors may be used to endorse or promote products derived from this
18 * software without specific prior written permission.
19 *
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
32 *
33 **********
34 *
35 * Program : TINA
36 * File : $Source: /home/tina/cvs/tina-libs/tina/file/fileGeom_ffg_write.c,v $
37 * Date : $Date: 2005/01/23 19:10:21 $
38 * Version : $Revision: 1.3 $
39 * CVS Id : $Id: fileGeom_ffg_write.c,v 1.3 2005/01/23 19:10:21 paul Exp $
40 *
41 * Author : Legacy TINA
42 *
43 * Notes :
44 *
45 *
46 *********
47 */
48
49 #include "fileGeom_ffg_write.h"
50
51 #if HAVE_CONFIG_H
52 #include <config.h>
53 #endif
54
55 #include <stdio.h>
56 #include <tina/sys/sysPro.h>
57 #include <tina/sys/sysDef.h>
58 #include <tina/math/mathPro.h>
59 #include <tina/math/mathDef.h>
60 #include <tina/geometry/geomPro.h>
61 #include <tina/vision/visDef.h>
62 #include <tina/vision/visPro.h>
63
64 void ffg_write_file_fp(FILE * fp, List * list)
65 {
66 int count;
67 List *lptr;
68 List *gptr;
69
70 for (count = 0, lptr = list; lptr != NULL; lptr = lptr->next)
71 count++;
72
73 (void) fprintf(fp, "%d\n", count);
74
75 for (lptr = list; lptr != NULL; lptr = lptr->next)
76 {
77 Match_cliche *m = (Match_cliche *) lptr->to;
78
79 if (m->focus == NULL || m->group == NULL)
80 continue;
81
82 (void) fprintf(fp, "%d ", geom_label_get(m->focus->to, m->focus->type));
83 for (count = 0, gptr = m->group; gptr != NULL; gptr = gptr->next)
84 count++;
85 (void) fprintf(fp, "%d ", count);
86 for (gptr = m->group; gptr != NULL; gptr = gptr->next)
87 (void) fprintf(fp, "%d ", geom_label_get(gptr->to, gptr->type));
88 (void) fprintf(fp, "\n");
89 }
90 }
91
92 void ffg_write_file(char *pathname, List * list)
93
94 /* Match_cliche list */
95 {
96 char temps[256];
97 FILE *fp;
98
99 if ((fp = fopen(pathname, "w")) == NULL)
100 {
101 (void) string_append(temps, "can not open file ", pathname, 0);
102 error(temps, non_fatal);
103 return;
104 }
105 ffg_write_file_fp(fp, list);
106 (void) fclose(fp);
107 }
108
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.