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 :
23 * Date :
24 * Version :
25 * CVS Id :
26 *
27 * Author :
28 *
29 * Notes :
30 *
31 *
32 *
33 *********
34 */
35
36 #ifndef TINA_MED_STIM_CT_GAMMA_HDR
37 #define TINA_MED_STIM_CT_GAMMA_HDR
38
39 #include <tina/image/imgDef.h>
40 #include <tina/medical/med_StimDef.h>
41
42 #ifdef __cplusplus
43 extern "C" {
44 #endif /* __cplusplus */
45
46 double *ct_scl_get();
47 double *ct_min_t0_get();
48 double *ct_ave_mtt_get();
49 double *ct_recirc_cut_get();
50 double *ct_recirc_period_get();
51 int ct_gamma_fit_pixel(Perfusion *perf_data, Vec2 v, void ***imptrs);
52 /*
53 * Altered to improve lib / tool separation - GAB 19 Feb 2003
54 * Stack manipulation moved to pixel_gfit_region, mask passed as parameter.
55 */
56 double ct_gamma_fit_region(Perfusion *perf_data, Imrect *mask);
57 /*
58 * Altered to improve lib / tool separation - GAB 19 Feb 2003
59 * Stack manipulation moved to gfit_pixels_proc, mask passed as parameter.
60 */
61 void ct_gfit_measure_image(double err_thresh, Imrect *mask);
62 Imrect *ct_gfit_get_image(int perf_type);
63
64 #ifdef __cplusplus
65 }
66 #endif /* __cplusplus */
67
68 #endif /*TINA_MED_STIM_CT_GAMMA_HDR*/
69
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.