VIA - Volumetric Image Analysis
headerinfo.h
1 typedef struct V_ImageInfo {
2  long nbands; /* number of bands */
3  long nrows; /* number of rows */
4  long ncolumns; /* number of columns */
5  VRepnKind repn; /* representation of pixel values */
6  long pixelSize; /* number of bytes per pixel */
7  size_t data; /* address of first pixel */
8  size_t length; /* number of bytes in image */
9  VShort ori_nbands; /* info needed for compressed format */
10  VShort ori_nrows;
11  VShort ori_ncolumns;
12  VShort top_margin;
13  VShort left_margin;
14  VString patient;
15  VString modality;
16  VString angle;
17  VString voxel;
18  VString name;
19  VString fixpoint;
20  VString ca;
21  VString cp;
22  VString location;
23  VString extent;
24  VString orientation;
25  VString talairach;
26  VString MPIL_vista_0;
27  size_t offsetHdr; /* length of ASCII header in bytes */
28  long spPH;
29  long spPG;
30  long subjects;
31  long ntimesteps;
32  VDouble df;
33  VDouble norm_mean;
34  VDouble norm_sig;
35  long repetition_time;
36 } VImageInfo;
37