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/medical/medStim_gamma.h,v $
23 * Date : $Date: 2003/10/06 12:29:47 $
24 * Version : $Revision: 1.5 $
25 * CVS Id : $Id: medStim_gamma.h,v 1.5 2003/10/06 12:29:47 neil Exp $
26 *
27 * Author : Legacy TINA
28 *
29 * Notes :
30 *
31 * Gio Buonaccorsi altered prototypes of functions gfit_measure_image and
32 * gamma_fit_region to take mask as parameter.
33 * Done to improve lib / tool separation 19 Feb 2003.
34 *
35 *********
36 */
37
38 #ifndef TINA_MED_STIM_GAMMA_HDR
39 #define TINA_MED_STIM_GAMMA_HDR
40
41 #include <tina/image/imgDef.h>
42 #include <tina/medical/med_StimDef.h>
43
44 #ifdef __cplusplus
45 extern "C" {
46 #endif /* __cplusplus */
47
48 double *scl_get();
49 double *min_t0_get();
50 double *ave_mtt_get();
51 double *recirc_cut_get();
52 double *recirc_period_get();
53 int gamma_fit_pixel(Perfusion *perf_data, Vec2 v, void ***imptrs);
54 /*
55 * Altered to improve lib / tool separation - GAB 19 Feb 2003
56 * Stack manipulation moved to pixel_gfit_region, mask passed as parameter.
57 */
58 double gamma_fit_region(Perfusion *perf_data, Imrect *mask);
59 /*
60 * Altered to improve lib / tool separation - GAB 19 Feb 2003
61 * Stack manipulation moved to gfit_pixels_proc, mask passed as parameter.
62 */
63 void gfit_measure_image(double err_thresh, Imrect *mask);
64 Imrect *gfit_get_image(int perf_type);
65
66 #ifdef __cplusplus
67 }
68 #endif /* __cplusplus */
69
70 #endif /*TINA_MED_STIM_GAMMA_HDR*/
71
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.