My Project
Readme
Go to the documentation of this file.
1/**
2\mainpage libtpcimgio 1.5.10 (c) 2005-2011 by Turku PET Centre
3\section readme Readme
4<PRE>
5
6libtpcimgio 1.5.10 (c) 2005-2011 by Turku PET Centre
7
8Build Feb 4 2011 16:23:52
9
10
11PET Image IO library
12-------------------------------------------------------------------------------
13
142007-03-21
15Turku PET Centre
16
17Libtpcimgio is distributed under the GNU Lesser General Public Licence
18http://www.gnu.org/licenses/lgpl.html
19More information on open source licences: http://www.opensource.org/
20
21Description
22-------------------------------------------------------------------------------
23
24The libtpcimgio library is a collection of commonly used C files in Turku PET Centre
25for image file input and output procedures. Libtpcimgio library supports Analyze 7.5,
26Ecat 6.x, Ecat 7.x and partly interfile formats.
27
28List of files
29-------------------------------------------------------------------------------
30
31include/ - Includes all the header files for the .c files
32
33Makefile - The makefile
34
35** .c files **
36
37analyze.c - reading and writing Analyze 7.5 image files.
38
39ecat63ml.c - Procedures for ECAT 6.3 matrix list.
40
41ecat63p.c - Printing ECAT 6.3 headers.
42
43ecat63r.c - Reading ECAT 6.3 files.
44
45ecat63w.c - Writing ECAT 6.3 files.
46
47ecat7ml.c - Procedures for ECAT 7.x matrix list.
48
49ecat7p.c - Printing ECAT 7.x headers.
50
51ecat7h.c - Edit ECAT 7.x headers.
52
53ecat7r.c - Reading ECAT 7.x files.
54
55ecat7w.c - Writing ECAT 7.x files.
56
57img.c - Procedures for 4D image data (common to all image file formats).
58
59img_ana.c - Subprocedures for reading/writing Analyze 7.5 files to/from IMG.
60
61img_e63.c - Subprocedures for reading/writing ECAT 6.3 files to/from IMG.
62
63img_e7.c - Subprocedures for reading/writing ECAT 7 files to/from IMG.
64
65imgdecay.c - Decay correction, isotope codes, and half-lives.
66
67imgfile.c - Main procedures for IMG read/write.
68
69imgmax.c - Procedures for searching IMG min and max value.
70
71imgunit.c - Procedures for working with IMG calibration unit.
72
73interfile.c - Reading Interfile headers.
74
75micropet.c - Reading Inveon images.
76
77sif.c - Routines for Scan Information Files (SIF).
78
79sifio.c - Functions for reading and writing SIF format files.
80
81vol.c - Procedures for 3D image volume data (no time information).
82
83weight.c - Functions for setting weight factors based on SIF.
84
85libtpcimgio.c - Program for printing Readme and History information, and for
86 testing the library functions.
87
88libtpcimgiov.c- Version information for this library.
89
90
91Using the library
92-------------------------------------------------------------------------------
93
94The program that uses the library should include the .h file it needs.
95Example:
96 \#include <img.h>
97
98libtpcimgio depends on libtpcmisc.
99Example:
100 gcc myprog.c -ltpcimgio -ltpcmisc
101
102
103</PRE>
104 */