Functions | |
Volumes | VImage2Volumes (VImage src) |
convert a raster image to volume repn. Each grey value produces one volume. | |
VImage | Volumes2Image (Volumes src, VRepnKind repn) |
convert a volume set to a raster image repn | |
VImage | Volumes2Bin (Volumes src) |
convert a volume set to a binary raster image | |
VImage | Volume2Bin (Volume v) |
convert a single volume to a binary raster image | |
Volume | VBin2Volume (VImage src) |
convert a binary raster image to a single volume representation | |
VBoolean | VolumeInside (Volume v, short b, short r, short c) |
test if voxel [b,r,c] is inside volume v, return TRUE if so, return FALSE, otherwise. |
Volumes VImage2Volumes | ( | VImage | src | ) |
convert a raster image to volume repn. Each grey value produces one volume.
src | input image (ubyte or short repn) |
VImage Volumes2Image | ( | Volumes | src, | |
VRepnKind | repn | |||
) |
convert a volume set to a raster image repn
src | input volume set | |
repn | output pixel repn (any repn). |
VImage Volumes2Bin | ( | Volumes | src | ) |
convert a volume set to a binary raster image
src | input volume set |
VImage Volume2Bin | ( | Volume | src | ) |
convert a single volume to a binary raster image
src | input volume |
Volume VBin2Volume | ( | VImage | src | ) |
convert a binary raster image to a single volume representation
src | input raster image (bit repn) |
VBoolean VolumeInside | ( | Volume | v, | |
short | b, | |||
short | r, | |||
short | c | |||
) |
test if voxel [b,r,c] is inside volume v, return TRUE if so, return FALSE, otherwise.
v | input volume | |
b | slice address of voxel | |
r | row address of voxel | |
c | column address of voxel |