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.
|
Detailed Description
Operations on volume sets.
- Reference:
- G. Lohmann (1998). "Volumetric Image Analysis", John Wiley & Sons, Chichester, England.
- Author:
- Gabriele Lohmann, MPI-CBS
Function Documentation
Volumes VImage2Volumes |
( |
VImage |
src |
) |
|
convert a raster image to volume repn. Each grey value produces one volume.
- Parameters:
-
| src | input image (ubyte or short repn) |
VImage Volumes2Image |
( |
Volumes |
src, |
|
|
VRepnKind |
repn | |
|
) |
| | |
convert a volume set to a raster image repn
- Parameters:
-
| src | input volume set |
| repn | output pixel repn (any repn). |
convert a volume set to a binary raster image
- Parameters:
-
VImage Volume2Bin |
( |
Volume |
src |
) |
|
convert a single volume to a binary raster image
- Parameters:
-
Volume VBin2Volume |
( |
VImage |
src |
) |
|
convert a binary raster image to a single volume representation
- Parameters:
-
| 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.
- Parameters:
-
| v | input volume |
| b | slice address of voxel |
| r | row address of voxel |
| c | column address of voxel |