


lyngby_read_vapet - Read a 3D VAPET file
function Output = lyngby_read_vapet(filename,
'PropertyName', 'PropertyValue');
Input: filename Filename
Property: Output [ {Volume} | DataType | Endian | Size |
VoxelDim | Orientation ]
Size Volume dimension.
Datatype String with precision, for example 'uint16'
or 'float32'.
FilenameIndex {1}
Ordering [ {xyz} | xzy | yxz | yzx | zxy | zyx ]
Orientation [ lrpais | {lrapsi} | lrapis | ... ]
VoxelMask
Output: Output Output according to 'Output' argument in
the input
This function reads a VAPET volume file. This format is
defined in Minneapolis and contains a text header followed by
a data in binary format.
Example:
V = lyngby_read_vapet('MNI27_t1_64x64x32.mri');
V = reshape(V, [ 64 64 32]);
imagesc(rot90(squeeze(V(:,:,16)))), axis image
See also: LYNGBY, LYNGBY_READ_VAPET4D, BREDE_READ_ANALYZE,
BREDE_WRITE_ANA.
$Id: lyngby_read_vapet.m,v 1.2 2005/01/20 13:01:49 fnielsen Exp $