VIP: Volume Image Processing


slice.h
Go to the documentation of this file.
1/****************************************************************************
2 * PROJECT : V.I.P. Library
3 * MODULE NAME : vip/slice.h * TYPE : Header
4 * AUTHOR : POUPON F. * CREATION : 12/02/1997
5 * VERSION : 0.1 * REVISION :
6 * LANGUAGE : C++ * EXAMPLE :
7 * DEVICE : Sun SPARC Station 5
8 ****************************************************************************
9 *
10 * DESCRIPTION : Extraction d'une coupe dans un volume
11 *
12 ****************************************************************************
13 *
14 * USED MODULES : vip/volume.h
15 *
16 ****************************************************************************
17 * REVISIONS : DATE | AUTHOR | DESCRIPTION
18 *--------------------|--------------|---------------------------------------
19 * / / | |
20 ****************************************************************************/
21
22#ifndef VIP_SLICE_H
23#define VIP_SLICE_H
24
25#ifdef __cplusplus
26 extern "C" {
27#endif
28
29#include <vip/volume.h>
30
31#define VIP_AXIAL_SLICE 100
32#define VIP_CORONAL_SLICE 101
33#define VIP_SAGITTAL_SLICE 102
34
35/*----------------------------------------------------------------------------*/
37 Volume *vol,
38 int slice
39);
40/*----------------------------------------------------------------------------*/
41
42/*----------------------------------------------------------------------------*/
44 Volume *vol,
45 int slice
46);
47/*----------------------------------------------------------------------------*/
48
49/*----------------------------------------------------------------------------*/
51 Volume *vol,
52 int slice
53);
54/*----------------------------------------------------------------------------*/
55
56/*----------------------------------------------------------------------------*/
58 Volume *vol,
59 int slice,
60 int slice_type
61);
62/*----------------------------------------------------------------------------*/
63
64#ifdef __cplusplus
65 }
66#endif
67
68#endif
Volume * VipGetSlice(Volume *vol, int slice, int slice_type)
Volume * VipGetCoronalSlice(Volume *vol, int slice)
Volume * VipGetSagittalSlice(Volume *vol, int slice)
Volume * VipGetAxialSlice(Volume *vol, int slice)