VIA - Volumetric Image Analysis
|
00001 typedef struct V_ImageInfo { 00002 long nbands; /* number of bands */ 00003 long nrows; /* number of rows */ 00004 long ncolumns; /* number of columns */ 00005 VRepnKind repn; /* representation of pixel values */ 00006 long pixelSize; /* number of bytes per pixel */ 00007 size_t data; /* address of first pixel */ 00008 size_t length; /* number of bytes in image */ 00009 VShort ori_nbands; /* info needed for compressed format */ 00010 VShort ori_nrows; 00011 VShort ori_ncolumns; 00012 VShort top_margin; 00013 VShort left_margin; 00014 VString patient; 00015 VString modality; 00016 VString angle; 00017 VString voxel; 00018 VString name; 00019 VString fixpoint; 00020 VString ca; 00021 VString cp; 00022 VString location; 00023 VString extent; 00024 VString orientation; 00025 VString talairach; 00026 VString MPIL_vista_0; 00027 size_t offsetHdr; /* length of ASCII header in bytes */ 00028 long spPH; 00029 long spPG; 00030 long subjects; 00031 long ntimesteps; 00032 VDouble df; 00033 VDouble norm_mean; 00034 VDouble norm_sig; 00035 long repetition_time; 00036 } VImageInfo; 00037