| genre | Resample |
| status | stable |
| author | Horst Hahn |
| package | MeVisLab/Standard |
| dll | MLGeometry1 |
| definition | MLGeometry1.def |
| see also | Resample3D, OrthoSwapFlip |
| keywords | max, min, add, mip |
The module OrthoProjection projects a volume dataset along a given dimension using a specific function.
If a dimension is chosen whose extension is 1, nothing is done.
For add mode, the image's minimum and maximum voxel values and the output datatype are adjusted in order to prevent overflows. Unsigned datatypes are preferred in this case.
Defines the image dimension in which the projection is performed.
Values:
| Title | Name |
|---|---|
| x | x |
| y | y |
| z | z |
| c | c |
| t | t |
| u | u |
Defines the projection mode.
Values:
| Title | Name | Description |
|---|---|---|
| max | max | The maximum voxel value is the target value. |
| min | min | The minimum voxel value is the target value. |
| add | add | All voxel values are added to form the target value. |
| mean | mean | The mean voxel value is computed as the target value. |
| max Pos | maxPos | The position in voxel coordinates of the maximum value is used as the target value. |
| min Pos | minPos | The position in voxel coordinates of the minimum value is used as the target value. |