VIP: Volume Image Processing


pvec.h
Go to the documentation of this file.
1/*****************************************************************************
2 * PROJECT : V.I.P. Library
3 * MODULE NAME : vip/pvec.h * TYPE : Header
4 * AUTHOR : Frouin V. * CREATION : 20/09/1999
5 * VERSION : 1.5 * REVISION :
6 * LANGUAGE : C * EXAMPLE :
7 * DEVICE : Sun SPARC
8 *****************************************************************************
9 *
10 * DESCRIPTION : header for Partial Volume Effect Correction
11 *
12 *****************************************************************************
13 *
14 * USED MODULES :
15 *
16 *****************************************************************************
17 * REVISIONS : DATE | AUTHOR | DESCRIPTION
18 *--------------------|--------------|----------------------------------------
19 * / / | |
20 *****************************************************************************/
21
22
23#ifndef VIP_PVEC_H
24#define VIP_PVEC_H
25
26#ifdef __cplusplus
27 extern "C" {
28#endif
29
30/* general includes ------------------------------------------------------- */
31
32
33/* application includes --------------------------------------------------- */
34#include <vip/pvec/gtm_method.h>
35
36
37
38/* extern declaration --------------------------------------------------- */
39extern VipMatrix_VDOUBLE *VipStriataGtm (
40 Volume *label_vol, int *label, int nb_label,
41 float sigmaTrans, float sigmaAxi,
42 Volume *anatomy, int mode, int dump
43 );
44
45
46
47
48#ifdef __cplusplus
49 }
50#endif
51
52#endif
VipMatrix_VDOUBLE * VipStriataGtm(Volume *label_vol, int *label, int nb_label, float sigmaTrans, float sigmaAxi, Volume *anatomy, int mode, int dump)