|
MeVisLab Toolbox Reference
|
The TVirtualVolume class implements random access to a paged input image or a pure virtual image without mapping more than a limited number of bytes. Pages of the input volume are mapped temporarily into memory when needed. If no input volume is specified the pages are created and filled with a fill value. When the permitted amount of memory is exceeded then older mapped pages are removed. When pages are written they are mapped until the virtual volume instance is removed or if they are explicitly cleared by the application. More...
#include <mlTVirtualVolume.h>
Public Types | |
| typedef DATATYPE | ComponentType |
| A typedef to "export" the type of voxels components. | |
Public Member Functions | |
| TVirtualVolume (VirtualVolume &vVol) | |
| TVirtualVolume (PagedImage *image, MLint maxNumKB=-1, bool areExceptionsOn=false) | |
| TVirtualVolume (const ImageVector &ext, MLdouble fillVal=0, MLint maxNumKB=-1, bool areExceptionsOn=false) | |
| virtual | ~TVirtualVolume () |
| VirtualVolume & | getVirtualVolume () |
| Returns the pointer to the wrapped untyped virtual volume. | |
| void | getValues (const ImageVector *pos, DATATYPE *results, MLuint num) |
| DATATYPE | getValue (const ImageVector &pos) |
| void | setValue (const ImageVector &pos, DATATYPE data) |
| void | setCursorPosition (const ImageVector &pos) |
| Set the cursor to a certain position. | |
| const ImageVector & | getCursorPosition () const |
| Return the current cursor coordinates. | |
| void | setCursorValue (DATATYPE val) |
| Set value under cursor and lock page. | |
| DATATYPE | getCursorValue () |
| Return value under cursor. | |
| bool | isMapped (const ImageVector &pos) const |
| Returns true if voxel is mapped into memory, otherwise it returns false. | |
| void | moveCursorByOffset (const ImageVector &off) |
| Shift cursor to current position + offset. | |
| void | fill (const SubImageBox &box, DATATYPE value) |
| Fill box in virtual volume with value. | |
| void | copyToSubImage (TSubImage< DATATYPE > &outSubImg) |
| Copy area from virtual volume into outSubImg. | |
| void | copyFromSubImage (const TSubImage< DATATYPE > &inImg, const SubImageBox &box, const ImageVector &pos) |
| Copy area from inImg into virtual volume. | |
| template<typename OUTDTYPE> | |
| void | copyMaskToSubImage (TSubImage< OUTDTYPE > &outSubImg, BitImage &maskBits, bool maskValue=true, bool writeBK=false, OUTDTYPE bkVal=ml_cast_from_scalar< OUTDTYPE >(0)) |
| DATATYPE * | getWrittenPageData (MLuint32 wp) const |
Move cursor to next higher/lower position. | |
| void | moveCursorX () |
| void | moveCursorY () |
| void | moveCursorZ () |
| void | moveCursorC () |
| void | moveCursorT () |
| void | moveCursorU () |
| void | reverseMoveCursorX () |
| void | reverseMoveCursorY () |
| void | reverseMoveCursorZ () |
| void | reverseMoveCursorC () |
| void | reverseMoveCursorT () |
| void | reverseMoveCursorU () |
Linear image traversal. | |
| void | resetCursor () |
| Set cursor to default position (0,0,0,0,0,0). | |
| bool | moveCursorXWrapAround () |
Static Public Member Functions | |
| static MLint | getIntValueWrapped (void *vv, const ImageVector &pos) |
| static MLint64 | getInt64ValueWrapped (void *vv, const ImageVector &pos) |
| static MLdouble | getDoubleValueWrapped (void *vv, const ImageVector &pos) |
| static MLldouble | getLDoubleValueWrapped (void *vv, const ImageVector &pos) |
| static MLint | getIntCursorValueWrapped (void *vv) |
| static MLint64 | getInt64CursorValueWrapped (void *vv) |
| static MLdouble | getDoubleCursorValueWrapped (void *vv) |
| static MLldouble | getLDoubleCursorValueWrapped (void *vv) |
| static const ImageVector & | getCursorPositionWrapped (void *vv) |
| static bool | isMappedWrapped (void *vv, const ImageVector &pos) |
| static void | setCursorPositionWrapped (void *vv, const ImageVector &pos) |
| static void | setIntValueWrapped (void *vv, const ImageVector &pos, MLint v) |
| static void | setInt64ValueWrapped (void *vv, const ImageVector &pos, MLint64 v) |
| static void | setDoubleValueWrapped (void *vv, const ImageVector &pos, MLdouble v) |
| static void | setLDoubleValueWrapped (void *vv, const ImageVector &pos, MLldouble v) |
| static void | setIntCursorValueWrapped (void *vv, MLint v) |
| static void | setInt64CursorValueWrapped (void *vv, MLint64 v) |
| static void | setDoubleCursorValueWrapped (void *vv, MLdouble v) |
| static void | setLDoubleCursorValueWrapped (void *vv, MLldouble v) |
| static void | fillIntWrapped (void *vv, const ImageVector &v1, const ImageVector &v2, MLint v) |
| static void | fillInt64Wrapped (void *vv, const ImageVector &v1, const ImageVector &v2, MLint64 v) |
| static void | fillDoubleWrapped (void *vv, const ImageVector &v1, const ImageVector &v2, MLdouble v) |
| static void | fillLDoubleWrapped (void *vv, const ImageVector &v1, const ImageVector &v2, MLldouble v) |
| static void | moveCursorXWrapped (void *vv) |
| static void | moveCursorYWrapped (void *vv) |
| static void | moveCursorZWrapped (void *vv) |
| static void | moveCursorCWrapped (void *vv) |
| static void | moveCursorTWrapped (void *vv) |
| static void | moveCursorUWrapped (void *vv) |
| static void | reverseMoveCursorXWrapped (void *vv) |
| static void | reverseMoveCursorYWrapped (void *vv) |
| static void | reverseMoveCursorZWrapped (void *vv) |
| static void | reverseMoveCursorCWrapped (void *vv) |
| static void | reverseMoveCursorTWrapped (void *vv) |
| static void | reverseMoveCursorUWrapped (void *vv) |
| static void | moveCursorByOffsetWrapped (void *vv, const ImageVector &off) |
| static void | resetCursorWrapped (void *vv) |
| static bool | moveCursorXWrapAroundWrapped (void *vv) |
Protected Member Functions | |
| TVirtualVolume () | |
| Hide the default constructor to avoid incorrect usage due to missing initializations. | |
| TVirtualVolume & | operator= (const TVirtualVolume &) |
| void | _init (VirtualVolume &vVol) |
| Initialize the typed virtual volume. A valid virtual volume should be passed. | |
| void | _cleanUp () |
| Clean up all settings. Implements the destruction sequence. | |
Both with and without tests and exceptions is implemented. | |
| DATATYPE | _getVoxel1D (const ImageVector &pos) |
| Get voxel method for a certain dimension. (1d). | |
| DATATYPE | _getVoxel2D (const ImageVector &pos) |
| Get voxel method for a certain dimension. (2d). | |
| DATATYPE | _getVoxel3D (const ImageVector &pos) |
| Get voxel method for a certain dimension. (3d). | |
| DATATYPE | _getVoxel4D (const ImageVector &pos) |
| Get voxel method for a certain dimension. (4d). | |
| DATATYPE | _getVoxel5D (const ImageVector &pos) |
| Get voxel method for a certain dimension. (5d). | |
| DATATYPE | _getVoxel6D (const ImageVector &pos) |
| Get voxel method for a certain dimension. (6d). | |
| DATATYPE | _getVoxel1DE (const ImageVector &pos) |
| Get voxel at a position for a certain dimension with testing and exception throw if necessary. (1D). | |
| DATATYPE | _getVoxel2DE (const ImageVector &pos) |
| Get voxel at a position for a certain dimension with testing and exception throw if necessary. (2d). | |
| DATATYPE | _getVoxel3DE (const ImageVector &pos) |
| Get voxel at a position for a certain dimension with testing and exception throw if necessary. (3d). | |
| DATATYPE | _getVoxel4DE (const ImageVector &pos) |
| Get voxel at a position for a certain dimension with testing and exception throw if necessary. (4d). | |
| DATATYPE | _getVoxel5DE (const ImageVector &pos) |
| Get voxel at a position for a certain dimension with testing and exception throw if necessary. (5d). | |
| DATATYPE | _getVoxel6DE (const ImageVector &pos) |
| Get voxel at a position for a certain dimension with testing and exception throw if necessary. (6d). | |
Implementation of 6 setValue versions, optimized to the image dimensions. | |
In all functions first calculate the page index by dividing the coordinate components by their page extents and by multiplying them with _strides. Then call the page data access function by calling the function pointer in the page. That function maps the page if necessary. Then compute the index into that page by multiplying the coordinate components with _pStrides. Both with and without tests and exceptions is implemented. | |
| void | _setVoxel1D (const ImageVector &pos, DATATYPE voxVal) |
| Set voxel method for a certain dimension. (1d). | |
| void | _setVoxel2D (const ImageVector &pos, DATATYPE voxVal) |
| Set voxel method for a certain dimension. (2d). | |
| void | _setVoxel3D (const ImageVector &pos, DATATYPE voxVal) |
| Set voxel method for a certain dimension. (3d). | |
| void | _setVoxel4D (const ImageVector &pos, DATATYPE voxVal) |
| Set voxel method for a certain dimension. (4d). | |
| void | _setVoxel5D (const ImageVector &pos, DATATYPE voxVal) |
| Set voxel method for a certain dimension. (5d). | |
| void | _setVoxel6D (const ImageVector &pos, DATATYPE voxVal) |
| Set voxel method for a certain dimension. (6d). | |
| void | _setVoxel1DE (const ImageVector &pos, DATATYPE voxVal) |
| Set voxel at a position for a certain dimension with testing and exception throw if necessary. (1d). | |
| void | _setVoxel2DE (const ImageVector &pos, DATATYPE voxVal) |
| Set voxel at a position for a certain dimension with testing and exception throw if necessary. (2d). | |
| void | _setVoxel3DE (const ImageVector &pos, DATATYPE voxVal) |
| Set voxel at a position for a certain dimension with testing and exception throw if necessary. (3d). | |
| void | _setVoxel4DE (const ImageVector &pos, DATATYPE voxVal) |
| Set voxel at a position for a certain dimension with testing and exception throw if necessary. (4d). | |
| void | _setVoxel5DE (const ImageVector &pos, DATATYPE voxVal) |
| Set voxel at a position for a certain dimension with testing and exception throw if necessary. (5d). | |
| void | _setVoxel6DE (const ImageVector &pos, DATATYPE voxVal) |
| Set voxel at a position for a certain dimension with testing and exception throw if necessary. (6d). | |
Implementation of 6 isMapped versions, optimized to the image dimensions. | |
In all functions first calculate the page index by dividing the coordinate components by their page extents and by multiplying them with _strides. Then it looks whether the function to access the page is set or the load page function. Both with and without tests and exceptions is implemented. | |
| bool | _isMapped1D (const ImageVector &pos) const |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (1d). | |
| bool | _isMapped2D (const ImageVector &pos) const |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (2d). | |
| bool | _isMapped3D (const ImageVector &pos) const |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (3d). | |
| bool | _isMapped4D (const ImageVector &pos) const |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (4d). | |
| bool | _isMapped5D (const ImageVector &pos) const |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (6d). | |
| bool | _isMapped6D (const ImageVector &pos) const |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (6d). | |
| bool | _isMapped1DE (const ImageVector &pos) const |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (1d) Throws exception if out of range. | |
| bool | _isMapped2DE (const ImageVector &pos) const |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (2d) Throws exception if out of range. | |
| bool | _isMapped3DE (const ImageVector &pos) const |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (3d) Throws exception if out of range. | |
| bool | _isMapped4DE (const ImageVector &pos) const |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (4d) Throws exception if out of range. | |
| bool | _isMapped5DE (const ImageVector &pos) const |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (6d) Throws exception if out of range. | |
| bool | _isMapped6DE (const ImageVector &pos) const |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (6d) Throws exception if out of range. | |
Set the cursor to a certain position in 1D-6D, without and with exceptions. | |
Cursor offsetting implementation. | |
| void | _setCursorPos1D (const ImageVector &p) |
| Set cursor position for a certain dimension. (1d). | |
| void | _setCursorPos2D (const ImageVector &p) |
| Set cursor position for a certain dimension. (2d). | |
| void | _setCursorPos3D (const ImageVector &p) |
| Set cursor position for a certain dimension. (3d). | |
| void | _setCursorPos4D (const ImageVector &p) |
| Set cursor position for a certain dimension. (4d). | |
| void | _setCursorPos5D (const ImageVector &p) |
| Set cursor position for a certain dimension. (5d). | |
| void | _setCursorPos6D (const ImageVector &p) |
| Set cursor position for a certain dimension. (6d). | |
| void | _setCursorPos1DE (const ImageVector &p) |
| Set cursor position for a certain dimension with testing and exception throw if necessary. (1d). | |
| void | _setCursorPos2DE (const ImageVector &p) |
| Set cursor position for a certain dimension with testing and exception throw if necessary. (2d). | |
| void | _setCursorPos3DE (const ImageVector &p) |
| Set cursor position for a certain dimension with testing and exception throw if necessary. (3d). | |
| void | _setCursorPos4DE (const ImageVector &p) |
| Set cursor position for a certain dimension with testing and exception throw if necessary. (4d). | |
| void | _setCursorPos5DE (const ImageVector &p) |
| Set cursor position for a certain dimension with testing and exception throw if necessary. (5d). | |
| void | _setCursorPos6DE (const ImageVector &p) |
| Set cursor position for a certain dimension with testing and exception throw if necessary. (6d). | |
| void | _moveCursorOffset1D (const ImageVector &p) |
| Move cursor by an offset to a new position. (1d). | |
| void | _moveCursorOffset2D (const ImageVector &p) |
| Move cursor by an offset to a new position. (2d). | |
| void | _moveCursorOffset3D (const ImageVector &p) |
| Move cursor by an offset to a new position. (3d). | |
| void | _moveCursorOffset4D (const ImageVector &p) |
| Move cursor by an offset to a new position. (4d). | |
| void | _moveCursorOffset5D (const ImageVector &p) |
| Move cursor by an offset to a new position. (5d). | |
| void | _moveCursorOffset6D (const ImageVector &p) |
| Move cursor by an offset to a new position. (6d). | |
| void | _moveCursorOffset1DE (const ImageVector &p) |
| Move cursor by an offset to a new position with testing and exception throw if necessary. (1d). | |
| void | _moveCursorOffset2DE (const ImageVector &p) |
| Move cursor by an offset to a new position with testing and exception throw if necessary. (2d). | |
| void | _moveCursorOffset3DE (const ImageVector &p) |
| Move cursor by an offset to a new position with testing and exception throw if necessary. (3d). | |
| void | _moveCursorOffset4DE (const ImageVector &p) |
| Move cursor by an offset to a new position with testing and exception throw if necessary. (4d). | |
| void | _moveCursorOffset5DE (const ImageVector &p) |
| Move cursor by an offset to a new position with testing and exception throw if necessary. (5d). | |
| void | _moveCursorOffset6DE (const ImageVector &p) |
| Move cursor by an offset to a new position with testing and exception throw if necessary. (6d). | |
Move cursor to next higher position. The *E versions throw ML_OUT_OF_RANGE exceptions when outside the image. | |
Cursor movement implementation. | |
| void | _moveFX () |
| void | _moveFY () |
| void | _moveFZ () |
| void | _moveFC () |
| void | _moveFT () |
| void | _moveFU () |
| void | _moveFXE () |
| void | _moveFYE () |
| void | _moveFZE () |
| void | _moveFCE () |
| void | _moveFTE () |
| void | _moveFUE () |
Move cursor to next lower position. The *E versions throw ML_OUT_OF_RANGE exceptions when outside the image. | |
| void | _moveBX () |
| void | _moveBY () |
| void | _moveBZ () |
| void | _moveBC () |
| void | _moveBT () |
| void | _moveBU () |
| void | _moveBXE () |
| void | _moveBYE () |
| void | _moveBZE () |
| void | _moveBCE () |
| void | _moveBTE () |
| void | _moveBUE () |
Static Protected Member Functions | |
Static functions to wrap/call the correct function to get/set voxel methods. Only one of these set/get methods is | |
called via the function pointers _getVoxelFunc and _setVoxelFunc for a certain image dimension. All other functions are usually not used for that dimension. Both with and without tests and exceptions are implemented. | |
| static DATATYPE | _getVoxel1DCB (TVirtualVolume *obj, const ImageVector &pos) |
| static DATATYPE | _getVoxel2DCB (TVirtualVolume *obj, const ImageVector &pos) |
| static DATATYPE | _getVoxel3DCB (TVirtualVolume *obj, const ImageVector &pos) |
| static DATATYPE | _getVoxel4DCB (TVirtualVolume *obj, const ImageVector &pos) |
| static DATATYPE | _getVoxel5DCB (TVirtualVolume *obj, const ImageVector &pos) |
| static DATATYPE | _getVoxel6DCB (TVirtualVolume *obj, const ImageVector &pos) |
| static DATATYPE | _getVoxel1DCBE (TVirtualVolume *obj, const ImageVector &pos) |
| static DATATYPE | _getVoxel2DCBE (TVirtualVolume *obj, const ImageVector &pos) |
| static DATATYPE | _getVoxel3DCBE (TVirtualVolume *obj, const ImageVector &pos) |
| static DATATYPE | _getVoxel4DCBE (TVirtualVolume *obj, const ImageVector &pos) |
| static DATATYPE | _getVoxel5DCBE (TVirtualVolume *obj, const ImageVector &pos) |
| static DATATYPE | _getVoxel6DCBE (TVirtualVolume *obj, const ImageVector &pos) |
| static void | _setVoxel1DCB (TVirtualVolume *obj, const ImageVector &pos, DATATYPE voxVal) |
| static void | _setVoxel2DCB (TVirtualVolume *obj, const ImageVector &pos, DATATYPE voxVal) |
| static void | _setVoxel3DCB (TVirtualVolume *obj, const ImageVector &pos, DATATYPE voxVal) |
| static void | _setVoxel4DCB (TVirtualVolume *obj, const ImageVector &pos, DATATYPE voxVal) |
| static void | _setVoxel5DCB (TVirtualVolume *obj, const ImageVector &pos, DATATYPE voxVal) |
| static void | _setVoxel6DCB (TVirtualVolume *obj, const ImageVector &pos, DATATYPE voxVal) |
| static void | _setVoxel1DCBE (TVirtualVolume *obj, const ImageVector &pos, DATATYPE voxVal) |
| static void | _setVoxel2DCBE (TVirtualVolume *obj, const ImageVector &pos, DATATYPE voxVal) |
| static void | _setVoxel3DCBE (TVirtualVolume *obj, const ImageVector &pos, DATATYPE voxVal) |
| static void | _setVoxel4DCBE (TVirtualVolume *obj, const ImageVector &pos, DATATYPE voxVal) |
| static void | _setVoxel5DCBE (TVirtualVolume *obj, const ImageVector &pos, DATATYPE voxVal) |
| static void | _setVoxel6DCBE (TVirtualVolume *obj, const ImageVector &pos, DATATYPE voxVal) |
| static bool | _isMapped1DCB (const TVirtualVolume *obj, const ImageVector &pos) |
| static bool | _isMapped2DCB (const TVirtualVolume *obj, const ImageVector &pos) |
| static bool | _isMapped3DCB (const TVirtualVolume *obj, const ImageVector &pos) |
| static bool | _isMapped4DCB (const TVirtualVolume *obj, const ImageVector &pos) |
| static bool | _isMapped5DCB (const TVirtualVolume *obj, const ImageVector &pos) |
| static bool | _isMapped6DCB (const TVirtualVolume *obj, const ImageVector &pos) |
| static bool | _isMapped1DCBE (const TVirtualVolume *obj, const ImageVector &pos) |
| static bool | _isMapped2DCBE (const TVirtualVolume *obj, const ImageVector &pos) |
| static bool | _isMapped3DCBE (const TVirtualVolume *obj, const ImageVector &pos) |
| static bool | _isMapped4DCBE (const TVirtualVolume *obj, const ImageVector &pos) |
| static bool | _isMapped5DCBE (const TVirtualVolume *obj, const ImageVector &pos) |
| static bool | _isMapped6DCBE (const TVirtualVolume *obj, const ImageVector &pos) |
1-6D static functions with and without exceptions to wrap the correct setCursorPosition function for any dimension. | |
| static void | _setCursorPos1DCB (TVirtualVolume *obj, const ImageVector &p) |
| static void | _setCursorPos2DCB (TVirtualVolume *obj, const ImageVector &p) |
| static void | _setCursorPos3DCB (TVirtualVolume *obj, const ImageVector &p) |
| static void | _setCursorPos4DCB (TVirtualVolume *obj, const ImageVector &p) |
| static void | _setCursorPos5DCB (TVirtualVolume *obj, const ImageVector &p) |
| static void | _setCursorPos6DCB (TVirtualVolume *obj, const ImageVector &p) |
| static void | _setCursorPos1DCBE (TVirtualVolume *obj, const ImageVector &p) |
| static void | _setCursorPos2DCBE (TVirtualVolume *obj, const ImageVector &p) |
| static void | _setCursorPos3DCBE (TVirtualVolume *obj, const ImageVector &p) |
| static void | _setCursorPos4DCBE (TVirtualVolume *obj, const ImageVector &p) |
| static void | _setCursorPos5DCBE (TVirtualVolume *obj, const ImageVector &p) |
| static void | _setCursorPos6DCBE (TVirtualVolume *obj, const ImageVector &p) |
1-6D static functions with and without exceptions to wrap the correct moveCursorPos function for any dimension. | |
| static void | _moveCursorOffset1DCB (TVirtualVolume *obj, const ImageVector &p) |
| static void | _moveCursorOffset2DCB (TVirtualVolume *obj, const ImageVector &p) |
| static void | _moveCursorOffset3DCB (TVirtualVolume *obj, const ImageVector &p) |
| static void | _moveCursorOffset4DCB (TVirtualVolume *obj, const ImageVector &p) |
| static void | _moveCursorOffset5DCB (TVirtualVolume *obj, const ImageVector &p) |
| static void | _moveCursorOffset6DCB (TVirtualVolume *obj, const ImageVector &p) |
| static void | _moveCursorOffset1DCBE (TVirtualVolume *obj, const ImageVector &p) |
| static void | _moveCursorOffset2DCBE (TVirtualVolume *obj, const ImageVector &p) |
| static void | _moveCursorOffset3DCBE (TVirtualVolume *obj, const ImageVector &p) |
| static void | _moveCursorOffset4DCBE (TVirtualVolume *obj, const ImageVector &p) |
| static void | _moveCursorOffset5DCBE (TVirtualVolume *obj, const ImageVector &p) |
| static void | _moveCursorOffset6DCBE (TVirtualVolume *obj, const ImageVector &p) |
Static version:Move cursor to next higher position. The *E versions throw ML_OUT_OF_RANGE exceptions when outside the image. | |
| static void | _moveFXCB (TVirtualVolume *obj) |
| static void | _moveFYCB (TVirtualVolume *obj) |
| static void | _moveFZCB (TVirtualVolume *obj) |
| static void | _moveFCCB (TVirtualVolume *obj) |
| static void | _moveFTCB (TVirtualVolume *obj) |
| static void | _moveFUCB (TVirtualVolume *obj) |
| static void | _moveFXCBE (TVirtualVolume *obj) |
| static void | _moveFYCBE (TVirtualVolume *obj) |
| static void | _moveFZCBE (TVirtualVolume *obj) |
| static void | _moveFCCBE (TVirtualVolume *obj) |
| static void | _moveFTCBE (TVirtualVolume *obj) |
| static void | _moveFUCBE (TVirtualVolume *obj) |
Static version:Move cursor to next lower position. The *E versions throw ML_OUT_OF_RANGE exceptions when outside the image. | |
| static void | _moveBXCB (TVirtualVolume *obj) |
| static void | _moveBYCB (TVirtualVolume *obj) |
| static void | _moveBZCB (TVirtualVolume *obj) |
| static void | _moveBCCB (TVirtualVolume *obj) |
| static void | _moveBTCB (TVirtualVolume *obj) |
| static void | _moveBUCB (TVirtualVolume *obj) |
| static void | _moveBXCBE (TVirtualVolume *obj) |
| static void | _moveBYCBE (TVirtualVolume *obj) |
| static void | _moveBZCBE (TVirtualVolume *obj) |
| static void | _moveBCCBE (TVirtualVolume *obj) |
| static void | _moveBTCBE (TVirtualVolume *obj) |
| static void | _moveBUCBE (TVirtualVolume *obj) |
The TVirtualVolume class implements random access to a paged input image or a pure virtual image without mapping more than a limited number of bytes. Pages of the input volume are mapped temporarily into memory when needed. If no input volume is specified the pages are created and filled with a fill value. When the permitted amount of memory is exceeded then older mapped pages are removed. When pages are written they are mapped until the virtual volume instance is removed or if they are explicitly cleared by the application.
Accesses to the virtual volume can simple be performed with setValue and getValue. The accesses by the setValue and getValue are well optimized code which might be between 9 (1D), 18 (3D) and 36 (6D) instructions per voxel if the page below position is already mapped.
A cursor manager is also available to move a cursor forward with moveF*, backwards with moveB* methods. About 5-9 instructions might be executed for these move methods.
Accesses to voxels below cursor are available with setCursorValue and getCursorValue. On good compilers and already mapped pages they might use about 5-7 instructions.
So the cursor approach will probably be faster on data volumes with more than 2 dimensions.
Notes:
All calls of virtual volume accesses can be executed with or without testing of correctness (see areExceptionsOn parameter of constructors). If areExceptionsOn is true then all accesses to the virtual volume are tested and if necessary exceptions are thrown which can be caught by the code calling the virtual volume methods. Otherwise most functions perform no testing. Note that exception handling versions are slower than with disabled exceptions.
There are also some routines to get the boxes of the currently written pages. It is also possible to read/write the data of the written pages directly.
EXCEPTIONS:
The following exceptions are thrown if areExceptionsOn is passed as true to the constructors and errors occur:
Other exception resulting from failures of page requesting could also be thrown. They usually are returned redirected from getTile-commands.
If areExceptionsOn == false then no exceptions are thrown and many errors are handled by calling the ML_PRINT*() error macros and terminating the function/method. The virtual volume instance will be invalidated then. Invalid voxel accesses or memory failures during voxel accesses will destroy program state or cause unknown exceptions.
Note that areExceptionsOn == true degrades performance of voxel accesses.
Definition at line 210 of file mlTVirtualVolume.h.
| typedef DATATYPE ml::TVirtualVolume< DATATYPE >::ComponentType |
A typedef to "export" the type of voxels components.
Definition at line 223 of file mlTVirtualVolume.h.
|
inlineprotected |
Hide the default constructor to avoid incorrect usage due to missing initializations.
Definition at line 214 of file mlTVirtualVolume.h.
Referenced by _getVoxel1DCB(), _getVoxel1DCBE(), _getVoxel2DCB(), _getVoxel2DCBE(), _getVoxel3DCB(), _getVoxel3DCBE(), _getVoxel4DCB(), _getVoxel4DCBE(), _getVoxel5DCB(), _getVoxel5DCBE(), _getVoxel6DCB(), _getVoxel6DCBE(), _isMapped1DCB(), _isMapped1DCBE(), _isMapped2DCB(), _isMapped2DCBE(), _isMapped3DCB(), _isMapped3DCBE(), _isMapped4DCB(), _isMapped4DCBE(), _isMapped5DCB(), _isMapped5DCBE(), _isMapped6DCB(), _isMapped6DCBE(), _moveBCCB(), _moveBCCBE(), _moveBTCB(), _moveBTCBE(), _moveBUCB(), _moveBUCBE(), _moveBXCB(), _moveBXCBE(), _moveBYCB(), _moveBYCBE(), _moveBZCB(), _moveBZCBE(), _moveCursorOffset1DCB(), _moveCursorOffset1DCBE(), _moveCursorOffset2DCB(), _moveCursorOffset2DCBE(), _moveCursorOffset3DCB(), _moveCursorOffset3DCBE(), _moveCursorOffset4DCB(), _moveCursorOffset4DCBE(), _moveCursorOffset5DCB(), _moveCursorOffset5DCBE(), _moveCursorOffset6DCB(), _moveCursorOffset6DCBE(), _moveFCCB(), _moveFCCBE(), _moveFTCB(), _moveFTCBE(), _moveFUCB(), _moveFUCBE(), _moveFXCB(), _moveFXCBE(), _moveFYCB(), _moveFYCBE(), _moveFZCB(), _moveFZCBE(), _setCursorPos1DCB(), _setCursorPos1DCBE(), _setCursorPos2DCB(), _setCursorPos2DCBE(), _setCursorPos3DCB(), _setCursorPos3DCBE(), _setCursorPos4DCB(), _setCursorPos4DCBE(), _setCursorPos5DCB(), _setCursorPos5DCBE(), _setCursorPos6DCB(), _setCursorPos6DCBE(), _setVoxel1DCB(), _setVoxel1DCBE(), _setVoxel2DCB(), _setVoxel2DCBE(), _setVoxel3DCB(), _setVoxel3DCBE(), _setVoxel4DCB(), _setVoxel4DCBE(), _setVoxel5DCB(), _setVoxel5DCBE(), _setVoxel6DCB(), _setVoxel6DCBE(), fillDoubleWrapped(), fillInt64Wrapped(), fillIntWrapped(), fillLDoubleWrapped(), getCursorPositionWrapped(), getDoubleCursorValueWrapped(), getDoubleValueWrapped(), getInt64CursorValueWrapped(), getInt64ValueWrapped(), getIntCursorValueWrapped(), getIntValueWrapped(), getLDoubleCursorValueWrapped(), getLDoubleValueWrapped(), isMappedWrapped(), moveCursorByOffsetWrapped(), moveCursorCWrapped(), moveCursorTWrapped(), moveCursorUWrapped(), moveCursorXWrapAroundWrapped(), moveCursorXWrapped(), moveCursorYWrapped(), moveCursorZWrapped(), operator=(), resetCursorWrapped(), reverseMoveCursorCWrapped(), reverseMoveCursorTWrapped(), reverseMoveCursorUWrapped(), reverseMoveCursorXWrapped(), reverseMoveCursorYWrapped(), reverseMoveCursorZWrapped(), setCursorPositionWrapped(), setDoubleCursorValueWrapped(), setDoubleValueWrapped(), setInt64CursorValueWrapped(), setInt64ValueWrapped(), setIntCursorValueWrapped(), setIntValueWrapped(), setLDoubleCursorValueWrapped(), and setLDoubleValueWrapped().
|
inline |
Constructor 1. A valid VirtualVolume vVol must be passed. vVol is not destroyed by the destructor when this is deleted (see destructor comments).
Definition at line 227 of file mlTVirtualVolume.h.
References _init().
|
inline |
Convenience constructor (2) creating an untyped virtual volume inside the typed one to avoid additional management of the untyped instance. For documentation of parameters see corresponding constructor of VirtualVolume. Note that this constructor builds a significant VirtualVolume data structure inside, which will be destroyed automatically on TVirtualVolume destruction (see destructor comments).
Definition at line 240 of file mlTVirtualVolume.h.
References _init(), and MLGetDataTypeFromPtr().
|
inline |
Convenience constructor (3) creating an untyped virtual volume inside the typed one to avoid additional management of the untyped instance. For documentation of parameters see corresponding constructor of VirtualVolume. Note that this constructor builds a significant VirtualVolume data structure inside which will be destroyed automatically on TVirtualVolume destruction (see destructor comments).
Definition at line 257 of file mlTVirtualVolume.h.
References _init(), and MLGetDataTypeFromPtr().
|
inlinevirtual |
Destructor. Destroys this instance. The used untyped virtualVolume instance vVol is left unchanged if it was passed as reference to the constructor 1 (the TVirtualVolume(VirtualVolume &vVol)). If it was automatically created by any of the convenience constructors 2 or 3 it also will be deleted.
Definition at line 273 of file mlTVirtualVolume.h.
References _cleanUp().
|
protected |
Clean up all settings. Implements the destruction sequence.
Definition at line 1320 of file mlTVirtualVolume.h.
References _cleanUp().
Referenced by _cleanUp(), and ~TVirtualVolume().
|
inlineprotected |
Get voxel method for a certain dimension. (1d).
Definition at line 1362 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _getVoxel1D(), and ml::TVector6DBase< CompIntType >::x.
Referenced by _getVoxel1D(), and _getVoxel1DCB().
|
inlinestaticprotected |
Definition at line 635 of file mlTVirtualVolume.h.
References _getVoxel1D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 642 of file mlTVirtualVolume.h.
References _getVoxel1DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Get voxel at a position for a certain dimension with testing and exception throw if necessary. (1D).
Definition at line 1370 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _getVoxel1DE(), ML_OUT_OF_RANGE, and ml::TVector6DBase< CompIntType >::x.
Referenced by _getVoxel1DCBE(), and _getVoxel1DE().
|
inlineprotected |
Get voxel method for a certain dimension. (2d).
Definition at line 1381 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _getVoxel2D(), ml::TVector6DBase< CompIntType >::x, and ml::TVector6DBase< CompIntType >::y.
Referenced by _getVoxel2D(), and _getVoxel2DCB().
|
inlinestaticprotected |
Definition at line 636 of file mlTVirtualVolume.h.
References _getVoxel2D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 643 of file mlTVirtualVolume.h.
References _getVoxel2DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Get voxel at a position for a certain dimension with testing and exception throw if necessary. (2d).
Definition at line 1389 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _getVoxel2DE(), ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::x, and ml::TVector6DBase< CompIntType >::y.
Referenced by _getVoxel2DCBE(), and _getVoxel2DE().
|
inlineprotected |
Get voxel method for a certain dimension. (3d).
Definition at line 1402 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _getVoxel3D(), ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _getVoxel3D(), and _getVoxel3DCB().
|
inlinestaticprotected |
Definition at line 637 of file mlTVirtualVolume.h.
References _getVoxel3D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 644 of file mlTVirtualVolume.h.
References _getVoxel3DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Get voxel at a position for a certain dimension with testing and exception throw if necessary. (3d).
Definition at line 1412 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _getVoxel3DE(), ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _getVoxel3DCBE(), and _getVoxel3DE().
|
inlineprotected |
Get voxel method for a certain dimension. (4d).
Definition at line 1429 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _getVoxel4D(), ml::TVector6DBase< CompIntType >::c, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _getVoxel4D(), and _getVoxel4DCB().
|
inlinestaticprotected |
Definition at line 638 of file mlTVirtualVolume.h.
References _getVoxel4D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 645 of file mlTVirtualVolume.h.
References _getVoxel4DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Get voxel at a position for a certain dimension with testing and exception throw if necessary. (4d).
Definition at line 1443 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _getVoxel4DE(), ml::TVector6DBase< CompIntType >::c, ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _getVoxel4DCBE(), and _getVoxel4DE().
|
inlineprotected |
Get voxel method for a certain dimension. (5d).
Definition at line 1463 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _getVoxel5D(), ml::TVector6DBase< CompIntType >::c, ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _getVoxel5D(), and _getVoxel5DCB().
|
inlinestaticprotected |
Definition at line 639 of file mlTVirtualVolume.h.
References _getVoxel5D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 646 of file mlTVirtualVolume.h.
References _getVoxel5DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Get voxel at a position for a certain dimension with testing and exception throw if necessary. (5d).
Definition at line 1479 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _getVoxel5DE(), ml::TVector6DBase< CompIntType >::c, ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _getVoxel5DCBE(), and _getVoxel5DE().
|
inlineprotected |
Get voxel method for a certain dimension. (6d).
Definition at line 1503 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _getVoxel6D(), ml::TVector6DBase< CompIntType >::c, ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::u, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _getVoxel6D(), and _getVoxel6DCB().
|
inlinestaticprotected |
Definition at line 640 of file mlTVirtualVolume.h.
References _getVoxel6D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 647 of file mlTVirtualVolume.h.
References _getVoxel6DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Get voxel at a position for a certain dimension with testing and exception throw if necessary. (6d).
Definition at line 1521 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _getVoxel6DE(), ml::TVector6DBase< CompIntType >::c, ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::u, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _getVoxel6DCBE(), and _getVoxel6DE().
|
protected |
Initialize the typed virtual volume. A valid virtual volume should be passed.
Initialize the typed virtual volume. A valid virtual volume must be passed. Note that this function does NOT change the _convenienceInstance pointer (which must initialized to NULL or to a valid local instance before).
Select the correct cursor movement functions for exception case.
Select the correct cursor movement functions for non exception case.
Definition at line 1143 of file mlTVirtualVolume.h.
References _getVoxel1DCB(), _getVoxel1DCBE(), _getVoxel2DCB(), _getVoxel2DCBE(), _getVoxel3DCB(), _getVoxel3DCBE(), _getVoxel4DCB(), _getVoxel4DCBE(), _getVoxel5DCB(), _getVoxel5DCBE(), _getVoxel6DCB(), _getVoxel6DCBE(), _init(), _isMapped1DCB(), _isMapped1DCBE(), _isMapped2DCB(), _isMapped2DCBE(), _isMapped3DCB(), _isMapped3DCBE(), _isMapped4DCB(), _isMapped4DCBE(), _isMapped5DCB(), _isMapped5DCBE(), _isMapped6DCB(), _isMapped6DCBE(), _moveBCCB(), _moveBCCBE(), _moveBTCB(), _moveBTCBE(), _moveBUCB(), _moveBUCBE(), _moveBXCB(), _moveBXCBE(), _moveBYCB(), _moveBYCBE(), _moveBZCB(), _moveBZCBE(), _moveCursorOffset1DCB(), _moveCursorOffset1DCBE(), _moveCursorOffset2DCB(), _moveCursorOffset2DCBE(), _moveCursorOffset3DCB(), _moveCursorOffset3DCBE(), _moveCursorOffset4DCB(), _moveCursorOffset4DCBE(), _moveCursorOffset5DCB(), _moveCursorOffset5DCBE(), _moveCursorOffset6DCB(), _moveCursorOffset6DCBE(), _moveFCCB(), _moveFCCBE(), _moveFTCB(), _moveFTCBE(), _moveFUCB(), _moveFUCBE(), _moveFXCB(), _moveFXCBE(), _moveFYCB(), _moveFYCBE(), _moveFZCB(), _moveFZCBE(), _setCursorPos1DCB(), _setCursorPos1DCBE(), _setCursorPos2DCB(), _setCursorPos2DCBE(), _setCursorPos3DCB(), _setCursorPos3DCBE(), _setCursorPos4DCB(), _setCursorPos4DCBE(), _setCursorPos5DCB(), _setCursorPos5DCBE(), _setCursorPos6DCB(), _setCursorPos6DCBE(), _setVoxel1DCB(), _setVoxel1DCBE(), _setVoxel2DCB(), _setVoxel2DCBE(), _setVoxel3DCB(), _setVoxel3DCBE(), _setVoxel4DCB(), _setVoxel4DCBE(), _setVoxel5DCB(), _setVoxel5DCBE(), _setVoxel6DCB(), _setVoxel6DCBE(), ml::VirtualVolume::getDataType(), ml::VirtualVolume::getDim(), ML_BAD_DATA_TYPE, ML_BAD_DIMENSION, ML_PRINT_ERROR, ML_PRINT_FATAL_ERROR, and MLGetDataTypeFromPtr().
Referenced by _init(), TVirtualVolume(), TVirtualVolume(), and TVirtualVolume().
|
inlineprotected |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (1d).
Definition at line 2216 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _isMapped1D(), ml::VirtualVolume::_loadPageCB(), and ml::TVector6DBase< CompIntType >::x.
Referenced by _isMapped1D(), and _isMapped1DCB().
|
inlinestaticprotected |
Definition at line 663 of file mlTVirtualVolume.h.
References _isMapped1D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 670 of file mlTVirtualVolume.h.
References _isMapped1DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (1d) Throws exception if out of range.
Definition at line 2224 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _isMapped1DE(), ml::VirtualVolume::_loadPageCB(), ML_OUT_OF_RANGE, and ml::TVector6DBase< CompIntType >::x.
Referenced by _isMapped1DCBE(), and _isMapped1DE().
|
inlineprotected |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (2d).
Definition at line 2236 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _isMapped2D(), ml::VirtualVolume::_loadPageCB(), ml::TVector6DBase< CompIntType >::x, and ml::TVector6DBase< CompIntType >::y.
Referenced by _isMapped2D(), and _isMapped2DCB().
|
inlinestaticprotected |
Definition at line 664 of file mlTVirtualVolume.h.
References _isMapped2D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 671 of file mlTVirtualVolume.h.
References _isMapped2DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (2d) Throws exception if out of range.
Definition at line 2244 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _isMapped2DE(), ml::VirtualVolume::_loadPageCB(), ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::x, and ml::TVector6DBase< CompIntType >::y.
Referenced by _isMapped2DCBE(), and _isMapped2DE().
|
inlineprotected |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (3d).
Definition at line 2257 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _isMapped3D(), ml::VirtualVolume::_loadPageCB(), ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _isMapped3D(), and _isMapped3DCB().
|
inlinestaticprotected |
Definition at line 665 of file mlTVirtualVolume.h.
References _isMapped3D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 672 of file mlTVirtualVolume.h.
References _isMapped3DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (3d) Throws exception if out of range.
Definition at line 2267 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _isMapped3DE(), ml::VirtualVolume::_loadPageCB(), ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _isMapped3DCBE(), and _isMapped3DE().
|
inlineprotected |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (4d).
Definition at line 2284 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _isMapped4D(), ml::VirtualVolume::_loadPageCB(), ml::TVector6DBase< CompIntType >::c, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _isMapped4D(), and _isMapped4DCB().
|
inlinestaticprotected |
Definition at line 666 of file mlTVirtualVolume.h.
References _isMapped4D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 673 of file mlTVirtualVolume.h.
References _isMapped4DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (4d) Throws exception if out of range.
Definition at line 2295 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _isMapped4DE(), ml::VirtualVolume::_loadPageCB(), ml::TVector6DBase< CompIntType >::c, ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _isMapped4DCBE(), and _isMapped4DE().
|
inlineprotected |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (6d).
Definition at line 2314 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _isMapped5D(), ml::VirtualVolume::_loadPageCB(), ml::TVector6DBase< CompIntType >::c, ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _isMapped5D(), and _isMapped5DCB().
|
inlinestaticprotected |
Definition at line 667 of file mlTVirtualVolume.h.
References _isMapped5D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 674 of file mlTVirtualVolume.h.
References _isMapped5DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (6d) Throws exception if out of range.
Definition at line 2326 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _isMapped5DE(), ml::VirtualVolume::_loadPageCB(), ml::TVector6DBase< CompIntType >::c, ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _isMapped5DCBE(), and _isMapped5DE().
|
inlineprotected |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (6d).
Definition at line 2348 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _isMapped6D(), ml::VirtualVolume::_loadPageCB(), ml::TVector6DBase< CompIntType >::c, ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::u, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _isMapped6D(), and _isMapped6DCB().
|
inlinestaticprotected |
Definition at line 668 of file mlTVirtualVolume.h.
References _isMapped6D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 675 of file mlTVirtualVolume.h.
References _isMapped6DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Returns true if voxel is mapped in memory for a certain dimension; otherwise, it returns false. (6d) Throws exception if out of range.
Definition at line 2361 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, _isMapped6DE(), ml::VirtualVolume::_loadPageCB(), ml::TVector6DBase< CompIntType >::c, ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::u, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _isMapped6DCBE(), and _isMapped6DE().
|
inlineprotected |
Definition at line 833 of file mlTVirtualVolume.h.
Referenced by _moveBCCB().
|
inlinestaticprotected |
Definition at line 861 of file mlTVirtualVolume.h.
References _moveBC(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 868 of file mlTVirtualVolume.h.
References _moveBCE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Definition at line 846 of file mlTVirtualVolume.h.
References _VV_MOVEBE_TEST.
Referenced by _moveBCCBE().
|
inlineprotected |
Definition at line 834 of file mlTVirtualVolume.h.
Referenced by _moveBTCB().
|
inlinestaticprotected |
Definition at line 862 of file mlTVirtualVolume.h.
References _moveBT(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 869 of file mlTVirtualVolume.h.
References _moveBTE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Definition at line 847 of file mlTVirtualVolume.h.
References _VV_MOVEBE_TEST.
Referenced by _moveBTCBE().
|
inlineprotected |
Definition at line 835 of file mlTVirtualVolume.h.
Referenced by _moveBUCB().
|
inlinestaticprotected |
Definition at line 863 of file mlTVirtualVolume.h.
References _moveBU(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 870 of file mlTVirtualVolume.h.
References _moveBUE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Definition at line 848 of file mlTVirtualVolume.h.
References _VV_MOVEBE_TEST.
Referenced by _moveBUCBE().
|
inlineprotected |
Definition at line 830 of file mlTVirtualVolume.h.
Referenced by _moveBXCB().
|
inlinestaticprotected |
Definition at line 858 of file mlTVirtualVolume.h.
References _moveBX(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 865 of file mlTVirtualVolume.h.
References _moveBXE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Definition at line 843 of file mlTVirtualVolume.h.
References _VV_MOVEBE_TEST.
Referenced by _moveBXCBE().
|
inlineprotected |
Definition at line 831 of file mlTVirtualVolume.h.
Referenced by _moveBYCB().
|
inlinestaticprotected |
Definition at line 859 of file mlTVirtualVolume.h.
References _moveBY(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 866 of file mlTVirtualVolume.h.
References _moveBYE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Definition at line 844 of file mlTVirtualVolume.h.
References _VV_MOVEBE_TEST.
Referenced by _moveBYCBE().
|
inlineprotected |
Definition at line 832 of file mlTVirtualVolume.h.
Referenced by _moveBZCB().
|
inlinestaticprotected |
Definition at line 860 of file mlTVirtualVolume.h.
References _moveBZ(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 867 of file mlTVirtualVolume.h.
References _moveBZE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Definition at line 845 of file mlTVirtualVolume.h.
References _VV_MOVEBE_TEST.
Referenced by _moveBZCBE().
|
inlineprotected |
Move cursor by an offset to a new position. (1d).
Definition at line 1994 of file mlTVirtualVolume.h.
References _moveCursorOffset1D(), and ml::TVector6DBase< CompIntType >::x.
Referenced by _moveCursorOffset1D(), and _moveCursorOffset1DCB().
|
inlinestaticprotected |
Definition at line 754 of file mlTVirtualVolume.h.
References _moveCursorOffset1D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 761 of file mlTVirtualVolume.h.
References _moveCursorOffset1DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Move cursor by an offset to a new position with testing and exception throw if necessary. (1d).
Definition at line 2003 of file mlTVirtualVolume.h.
References _moveCursorOffset1DE(), ML_OUT_OF_RANGE, and ml::TVector6DBase< CompIntType >::x.
Referenced by _moveCursorOffset1DCBE(), and _moveCursorOffset1DE().
|
inlineprotected |
Move cursor by an offset to a new position. (2d).
Definition at line 2016 of file mlTVirtualVolume.h.
References _moveCursorOffset2D(), ml::TVector6DBase< CompIntType >::x, and ml::TVector6DBase< CompIntType >::y.
Referenced by _moveCursorOffset2D(), and _moveCursorOffset2DCB().
|
inlinestaticprotected |
Definition at line 755 of file mlTVirtualVolume.h.
References _moveCursorOffset2D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 762 of file mlTVirtualVolume.h.
References _moveCursorOffset2DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Move cursor by an offset to a new position with testing and exception throw if necessary. (2d).
Definition at line 2026 of file mlTVirtualVolume.h.
References _moveCursorOffset2DE(), ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::x, and ml::TVector6DBase< CompIntType >::y.
Referenced by _moveCursorOffset2DCBE(), and _moveCursorOffset2DE().
|
inlineprotected |
Move cursor by an offset to a new position. (3d).
Definition at line 2041 of file mlTVirtualVolume.h.
References _moveCursorOffset3D(), ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _moveCursorOffset3D(), and _moveCursorOffset3DCB().
|
inlinestaticprotected |
Definition at line 756 of file mlTVirtualVolume.h.
References _moveCursorOffset3D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 763 of file mlTVirtualVolume.h.
References _moveCursorOffset3DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Move cursor by an offset to a new position with testing and exception throw if necessary. (3d).
Definition at line 2054 of file mlTVirtualVolume.h.
References _moveCursorOffset3DE(), ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _moveCursorOffset3DCBE(), and _moveCursorOffset3DE().
|
inlineprotected |
Move cursor by an offset to a new position. (4d).
Definition at line 2074 of file mlTVirtualVolume.h.
References _moveCursorOffset4D(), ml::TVector6DBase< CompIntType >::c, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _moveCursorOffset4D(), and _moveCursorOffset4DCB().
|
inlinestaticprotected |
Definition at line 757 of file mlTVirtualVolume.h.
References _moveCursorOffset4D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 764 of file mlTVirtualVolume.h.
References _moveCursorOffset4DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Move cursor by an offset to a new position with testing and exception throw if necessary. (4d).
Definition at line 2089 of file mlTVirtualVolume.h.
References _moveCursorOffset4DE(), ml::TVector6DBase< CompIntType >::c, ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _moveCursorOffset4DCBE(), and _moveCursorOffset4DE().
|
inlineprotected |
Move cursor by an offset to a new position. (5d).
Definition at line 2112 of file mlTVirtualVolume.h.
References _moveCursorOffset5D().
Referenced by _moveCursorOffset5D(), and _moveCursorOffset5DCB().
|
inlinestaticprotected |
Definition at line 758 of file mlTVirtualVolume.h.
References _moveCursorOffset5D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 765 of file mlTVirtualVolume.h.
References _moveCursorOffset5DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Move cursor by an offset to a new position with testing and exception throw if necessary. (5d).
Definition at line 2132 of file mlTVirtualVolume.h.
References _moveCursorOffset5DE(), ml::TVector6DBase< CompIntType >::c, ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _moveCursorOffset5DCBE(), and _moveCursorOffset5DE().
|
inlineprotected |
Move cursor by an offset to a new position. (6d).
Definition at line 2161 of file mlTVirtualVolume.h.
References _moveCursorOffset6D().
Referenced by _moveCursorOffset6D(), and _moveCursorOffset6DCB().
|
inlinestaticprotected |
Definition at line 759 of file mlTVirtualVolume.h.
References _moveCursorOffset6D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 766 of file mlTVirtualVolume.h.
References _moveCursorOffset6DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Move cursor by an offset to a new position with testing and exception throw if necessary. (6d).
Definition at line 2181 of file mlTVirtualVolume.h.
References _moveCursorOffset6DE(), ml::TVector6DBase< CompIntType >::c, ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::u, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _moveCursorOffset6DCBE(), and _moveCursorOffset6DE().
|
inlineprotected |
Definition at line 794 of file mlTVirtualVolume.h.
Referenced by _moveFCCB(), and _moveFCE().
|
inlinestaticprotected |
Definition at line 813 of file mlTVirtualVolume.h.
References _moveFC(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 820 of file mlTVirtualVolume.h.
References _moveFCE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Definition at line 801 of file mlTVirtualVolume.h.
References _moveFC(), and ML_OUT_OF_RANGE.
Referenced by _moveFCCBE().
|
inlineprotected |
Definition at line 795 of file mlTVirtualVolume.h.
Referenced by _moveFTCB(), and _moveFTE().
|
inlinestaticprotected |
Definition at line 814 of file mlTVirtualVolume.h.
References _moveFT(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 821 of file mlTVirtualVolume.h.
References _moveFTE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Definition at line 802 of file mlTVirtualVolume.h.
References _moveFT(), and ML_OUT_OF_RANGE.
Referenced by _moveFTCBE().
|
inlineprotected |
Definition at line 796 of file mlTVirtualVolume.h.
Referenced by _moveFUCB(), and _moveFUE().
|
inlinestaticprotected |
Definition at line 815 of file mlTVirtualVolume.h.
References _moveFU(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 822 of file mlTVirtualVolume.h.
References _moveFUE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Definition at line 803 of file mlTVirtualVolume.h.
References _moveFU(), and ML_OUT_OF_RANGE.
Referenced by _moveFUCBE().
|
inlineprotected |
Definition at line 791 of file mlTVirtualVolume.h.
Referenced by _moveFXCB(), and _moveFXE().
|
inlinestaticprotected |
Definition at line 810 of file mlTVirtualVolume.h.
References _moveFX(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 817 of file mlTVirtualVolume.h.
References _moveFXE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Definition at line 798 of file mlTVirtualVolume.h.
References _moveFX(), and ML_OUT_OF_RANGE.
Referenced by _moveFXCBE().
|
inlineprotected |
Definition at line 792 of file mlTVirtualVolume.h.
Referenced by _moveFYCB(), and _moveFYE().
|
inlinestaticprotected |
Definition at line 811 of file mlTVirtualVolume.h.
References _moveFY(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 818 of file mlTVirtualVolume.h.
References _moveFYE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Definition at line 799 of file mlTVirtualVolume.h.
References _moveFY(), and ML_OUT_OF_RANGE.
Referenced by _moveFYCBE().
|
inlineprotected |
Definition at line 793 of file mlTVirtualVolume.h.
Referenced by _moveFZCB(), and _moveFZE().
|
inlinestaticprotected |
Definition at line 812 of file mlTVirtualVolume.h.
References _moveFZ(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 819 of file mlTVirtualVolume.h.
References _moveFZE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Definition at line 800 of file mlTVirtualVolume.h.
References _moveFZ(), and ML_OUT_OF_RANGE.
Referenced by _moveFZCBE().
|
inlineprotected |
Set cursor position for a certain dimension. (1d).
Definition at line 1768 of file mlTVirtualVolume.h.
References _setCursorPos1D(), and ml::TVector6DBase< CompIntType >::x.
Referenced by _setCursorPos1D(), and _setCursorPos1DCB().
|
inlinestaticprotected |
Definition at line 709 of file mlTVirtualVolume.h.
References _setCursorPos1D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 716 of file mlTVirtualVolume.h.
References _setCursorPos1DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Set cursor position for a certain dimension with testing and exception throw if necessary. (1d).
Definition at line 1777 of file mlTVirtualVolume.h.
References _setCursorPos1DE(), ML_OUT_OF_RANGE, and ml::TVector6DBase< CompIntType >::x.
Referenced by _setCursorPos1DCBE(), and _setCursorPos1DE().
|
inlineprotected |
Set cursor position for a certain dimension. (2d).
Definition at line 1790 of file mlTVirtualVolume.h.
References _setCursorPos2D(), ml::TVector6DBase< CompIntType >::x, and ml::TVector6DBase< CompIntType >::y.
Referenced by _setCursorPos2D(), and _setCursorPos2DCB().
|
inlinestaticprotected |
Definition at line 710 of file mlTVirtualVolume.h.
References _setCursorPos2D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 717 of file mlTVirtualVolume.h.
References _setCursorPos2DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Set cursor position for a certain dimension with testing and exception throw if necessary. (2d).
Definition at line 1801 of file mlTVirtualVolume.h.
References _setCursorPos2DE(), ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::x, and ml::TVector6DBase< CompIntType >::y.
Referenced by _setCursorPos2DCBE(), and _setCursorPos2DE().
|
inlineprotected |
Set cursor position for a certain dimension. (3d).
Definition at line 1817 of file mlTVirtualVolume.h.
References _setCursorPos3D(), ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _setCursorPos3D(), and _setCursorPos3DCB().
|
inlinestaticprotected |
Definition at line 711 of file mlTVirtualVolume.h.
References _setCursorPos3D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 718 of file mlTVirtualVolume.h.
References _setCursorPos3DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Set cursor position for a certain dimension with testing and exception throw if necessary. (3d).
Definition at line 1830 of file mlTVirtualVolume.h.
References _setCursorPos3DE(), ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _setCursorPos3DCBE(), and _setCursorPos3DE().
|
inlineprotected |
Set cursor position for a certain dimension. (4d).
Definition at line 1850 of file mlTVirtualVolume.h.
References _setCursorPos4D(), ml::TVector6DBase< CompIntType >::c, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _setCursorPos4D(), and _setCursorPos4DCB().
|
inlinestaticprotected |
Definition at line 712 of file mlTVirtualVolume.h.
References _setCursorPos4D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 719 of file mlTVirtualVolume.h.
References _setCursorPos4DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Set cursor position for a certain dimension with testing and exception throw if necessary. (4d).
Definition at line 1865 of file mlTVirtualVolume.h.
References _setCursorPos4DE(), ml::TVector6DBase< CompIntType >::c, ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _setCursorPos4DCBE(), and _setCursorPos4DE().
|
inlineprotected |
Set cursor position for a certain dimension. (5d).
Definition at line 1888 of file mlTVirtualVolume.h.
References _setCursorPos5D(), ml::TVector6DBase< CompIntType >::c, ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _setCursorPos5D(), and _setCursorPos5DCB().
|
inlinestaticprotected |
Definition at line 713 of file mlTVirtualVolume.h.
References _setCursorPos5D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 720 of file mlTVirtualVolume.h.
References _setCursorPos5DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Set cursor position for a certain dimension with testing and exception throw if necessary. (5d).
Definition at line 1906 of file mlTVirtualVolume.h.
References _setCursorPos5DE(), ml::TVector6DBase< CompIntType >::c, ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _setCursorPos5DCBE(), and _setCursorPos5DE().
|
inlineprotected |
Set cursor position for a certain dimension. (6d).
Definition at line 1935 of file mlTVirtualVolume.h.
References _setCursorPos6D(), ml::TVector6DBase< CompIntType >::c, ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::u, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _setCursorPos6D(), and _setCursorPos6DCB().
|
inlinestaticprotected |
Definition at line 714 of file mlTVirtualVolume.h.
References _setCursorPos6D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 721 of file mlTVirtualVolume.h.
References _setCursorPos6DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Set cursor position for a certain dimension with testing and exception throw if necessary. (6d).
Definition at line 1955 of file mlTVirtualVolume.h.
References _setCursorPos6DE(), ml::TVector6DBase< CompIntType >::c, ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::u, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _setCursorPos6DCBE(), and _setCursorPos6DE().
|
inlineprotected |
Set voxel method for a certain dimension. (1d).
Definition at line 1556 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, ml::PageBuffer::_locked, _setVoxel1D(), and ml::TVector6DBase< CompIntType >::x.
Referenced by _setVoxel1D(), and _setVoxel1DCB().
|
inlinestaticprotected |
Definition at line 649 of file mlTVirtualVolume.h.
References _setVoxel1D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 656 of file mlTVirtualVolume.h.
References _setVoxel1DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Set voxel at a position for a certain dimension with testing and exception throw if necessary. (1d).
Definition at line 1565 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, ml::PageBuffer::_locked, _setVoxel1DE(), ML_OUT_OF_RANGE, and ml::TVector6DBase< CompIntType >::x.
Referenced by _setVoxel1DCBE(), and _setVoxel1DE().
|
inlineprotected |
Set voxel method for a certain dimension. (2d).
Definition at line 1578 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, ml::PageBuffer::_locked, _setVoxel2D(), ml::TVector6DBase< CompIntType >::x, and ml::TVector6DBase< CompIntType >::y.
Referenced by _setVoxel2D(), and _setVoxel2DCB().
|
inlinestaticprotected |
Definition at line 650 of file mlTVirtualVolume.h.
References _setVoxel2D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 657 of file mlTVirtualVolume.h.
References _setVoxel2DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Set voxel at a position for a certain dimension with testing and exception throw if necessary. (2d).
Definition at line 1587 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, ml::PageBuffer::_locked, _setVoxel2DE(), ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::x, and ml::TVector6DBase< CompIntType >::y.
Referenced by _setVoxel2DCBE(), and _setVoxel2DE().
|
inlineprotected |
Set voxel method for a certain dimension. (3d).
Definition at line 1601 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, ml::PageBuffer::_locked, _setVoxel3D(), ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _setVoxel3D(), and _setVoxel3DCB().
|
inlinestaticprotected |
Definition at line 651 of file mlTVirtualVolume.h.
References _setVoxel3D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 658 of file mlTVirtualVolume.h.
References _setVoxel3DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Set voxel at a position for a certain dimension with testing and exception throw if necessary. (3d).
Definition at line 1612 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, ml::PageBuffer::_locked, _setVoxel3DE(), ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _setVoxel3DCBE(), and _setVoxel3DE().
|
inlineprotected |
Set voxel method for a certain dimension. (4d).
Definition at line 1630 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, ml::PageBuffer::_locked, _setVoxel4D(), ml::TVector6DBase< CompIntType >::c, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _setVoxel4D(), and _setVoxel4DCB().
|
inlinestaticprotected |
Definition at line 652 of file mlTVirtualVolume.h.
References _setVoxel4D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 659 of file mlTVirtualVolume.h.
References _setVoxel4DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Set voxel at a position for a certain dimension with testing and exception throw if necessary. (4d).
Definition at line 1645 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, ml::PageBuffer::_locked, _setVoxel4DE(), ml::TVector6DBase< CompIntType >::c, ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _setVoxel4DCBE(), and _setVoxel4DE().
|
inlineprotected |
Set voxel method for a certain dimension. (5d).
Definition at line 1668 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, ml::PageBuffer::_locked, _setVoxel5D(), ml::TVector6DBase< CompIntType >::c, ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _setVoxel5D(), and _setVoxel5DCB().
|
inlinestaticprotected |
Definition at line 653 of file mlTVirtualVolume.h.
References _setVoxel5D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 660 of file mlTVirtualVolume.h.
References _setVoxel5DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Set voxel at a position for a certain dimension with testing and exception throw if necessary. (5d).
Definition at line 1685 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, ml::PageBuffer::_locked, _setVoxel5DE(), ml::TVector6DBase< CompIntType >::c, ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _setVoxel5DCBE(), and _setVoxel5DE().
|
inlineprotected |
Set voxel method for a certain dimension. (6d).
Definition at line 1712 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, ml::PageBuffer::_locked, _setVoxel6D(), ml::TVector6DBase< CompIntType >::c, ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::u, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _setVoxel6D(), and _setVoxel6DCB().
|
inlinestaticprotected |
Definition at line 654 of file mlTVirtualVolume.h.
References _setVoxel6D(), and TVirtualVolume().
Referenced by _init().
|
inlinestaticprotected |
Definition at line 661 of file mlTVirtualVolume.h.
References _setVoxel6DE(), and TVirtualVolume().
Referenced by _init().
|
inlineprotected |
Set voxel at a position for a certain dimension with testing and exception throw if necessary. (6d).
Definition at line 1731 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, ml::PageBuffer::_locked, _setVoxel6DE(), ml::TVector6DBase< CompIntType >::c, ML_OUT_OF_RANGE, ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::u, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by _setVoxel6DCBE(), and _setVoxel6DE().
| void ml::TVirtualVolume< DATATYPE >::copyFromSubImage | ( | const TSubImage< DATATYPE > & | inImg, |
| const SubImageBox & | box, | ||
| const ImageVector & | pos ) |
Copy area from inImg into virtual volume.
Copy the area given by box from inImg to the position p of the virtual volume. The box position (0,0,0,0,0,0) is considered the first valid voxel in inImg. Before copying the region is limited to valid overlapping areas.
Definition at line 1102 of file mlTVirtualVolume.h.
References ml::TVector6DBase< CompIntType >::c, copyFromSubImage(), ml::SubImage::getBoxFromImageExtent(), ml::TSubImage< DATATYPE >::getSubImageValue(), ml::TSubImageBox< MLint >::intersect(), setValue(), ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::u, ml::TSubImageBox< intT >::v1, ml::TSubImageBox< intT >::v2, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by copyFromSubImage().
|
inline |
Takes overlapping region from *this, outSubImg and maskBits and copies all voxels from *this to outSubImg if the corresponding bit in maskBits has the value maskValue. If the value differs the value bkVal is only written if writeBK is true; otherwise the value in outSubImg is left unchanged. Non-overlapping regions of *this, outSubImg and maskBits are not read, checked or handled. Cursor positions of outSubImg, maskBits and *this are used but restored after usage. Values from this are simply cast from DATATYPE to OUTDTYPE before writing them into outSubimg.
| outSubImg | is the target subimage to be filled with masked voxels from *this in regions overlapping *this and maskBits. |
| maskBits | specifies voxels mask. If a bit mask value equals maskVal then the voxel from *this is copied to outSubImg if it's within the image extents. |
| maskValue | is the value which must be the bit value in maskBits to force a copy of a voxel value to outSubImg; default is true. |
| writeBK | determines whether voxel values in outSubImg are filled with bkVal in the case that voxel is not masked; default is false. |
| bkVal | is the value written in the case that the corresponding voxel is not masked, that writeBK is true and that voxel is within overlapping range of *this, outSubImg and maskBits; default is 0. |
Definition at line 392 of file mlTVirtualVolume.h.
References ml::TVector6DBase< CompIntType >::c, ml::SubImage::getBox(), ml::BitImage::getCursorPosition(), getCursorPosition(), ml::BitImage::getCursorValue(), getCursorValue(), ml::BitImage::getExtent(), ml::TSubImage< DATATYPE >::getImagePointer(), ml::TSubImageBox< intT >::intersect(), ml::TSubImageBox< MLint >::intersect(), ml_cast_from_scalar(), ml::BitImage::moveCursorX(), moveCursorX(), ml::BitImage::setCursorPosition(), setCursorPosition(), ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::u, ml::TSubImageBox< intT >::v1, ml::TSubImageBox< intT >::v2, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
| void ml::TVirtualVolume< DATATYPE >::copyToSubImage | ( | TSubImage< DATATYPE > & | outSubImg | ) |
Copy area from virtual volume into outSubImg.
Copy area from the virtual volume into the subimage given by outSubImg. Note that only valid regions of the virtual volumes are read - if outSubImg reaches outside the virtual volume the corresponding areas are not read, i.e. these regions are left undefined in outSubImg.
Definition at line 1093 of file mlTVirtualVolume.h.
References copyToSubImage().
Referenced by copyToSubImage().
| void ml::TVirtualVolume< DATATYPE >::fill | ( | const SubImageBox & | box, |
| DATATYPE | value ) |
Fill box in virtual volume with value.
Fill the area box in the virtual image with voxel value value. If area reaches outside the valid virtual volume area it is automatically clamped to valid voxels.
Definition at line 1064 of file mlTVirtualVolume.h.
References ml::TVector6DBase< CompIntType >::c, fill(), ml::TSubImageBox< MLint >::intersect(), setValue(), ml::TVector6DBase< CompIntType >::t, ml::TVector6DBase< CompIntType >::u, ml::TSubImageBox< intT >::v1, ml::TSubImageBox< intT >::v2, ml::TVector6DBase< CompIntType >::x, ml::TVector6DBase< CompIntType >::y, and ml::TVector6DBase< CompIntType >::z.
Referenced by fill(), fillDoubleWrapped(), fillInt64Wrapped(), fillIntWrapped(), and fillLDoubleWrapped().
|
inlinestatic |
Definition at line 506 of file mlTVirtualVolume.h.
References fill(), and TVirtualVolume().
|
inlinestatic |
Definition at line 505 of file mlTVirtualVolume.h.
References fill(), and TVirtualVolume().
|
inlinestatic |
Definition at line 504 of file mlTVirtualVolume.h.
References fill(), and TVirtualVolume().
|
inlinestatic |
Definition at line 507 of file mlTVirtualVolume.h.
References fill(), and TVirtualVolume().
|
inline |
Return the current cursor coordinates.
Definition at line 302 of file mlTVirtualVolume.h.
Referenced by copyMaskToSubImage().
|
inlinestatic |
Definition at line 493 of file mlTVirtualVolume.h.
References TVirtualVolume().
|
inline |
Return value under cursor.
Definition at line 1004 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, and getCursorValue().
Referenced by copyMaskToSubImage(), and getCursorValue().
|
inlinestatic |
Definition at line 491 of file mlTVirtualVolume.h.
References TVirtualVolume().
|
inlinestatic |
Definition at line 487 of file mlTVirtualVolume.h.
References TVirtualVolume().
|
inlinestatic |
Definition at line 490 of file mlTVirtualVolume.h.
References TVirtualVolume().
|
inlinestatic |
Definition at line 486 of file mlTVirtualVolume.h.
References TVirtualVolume().
|
inlinestatic |
Definition at line 489 of file mlTVirtualVolume.h.
References TVirtualVolume().
|
inlinestatic |
Wrapper functions for non template application interfaces. It always requires a valid, non NULL pointer to the correctly typed virtual volume instance, otherwise crashes will occur. Since all these functions are very time critical those pointers are not checked and the calling application must guarantee valid pointers. For documentation have a look at the wrapped function. Removing type names like "Int", "Int64", "Double" or long double and the W at the end of the function name will lead to the name of the corresponding wrapped function.
Definition at line 485 of file mlTVirtualVolume.h.
References TVirtualVolume().
|
inlinestatic |
Definition at line 492 of file mlTVirtualVolume.h.
References TVirtualVolume().
|
inlinestatic |
Definition at line 488 of file mlTVirtualVolume.h.
References TVirtualVolume().
|
inline |
Get a voxel value from the virtual volume. The position pos must be within the valid image area.
Definition at line 292 of file mlTVirtualVolume.h.
|
inline |
Get a set of voxels from the virtual volume. Their positions must be within the valid image area. *pos must point to a vector of at least num vectors with image positions. *results must point to a vector of at least num DATATYPE entries which will be filled with the voxel data. This method is preferable to your own getValue loops since it probably will be optimized in the future.
Definition at line 985 of file mlTVirtualVolume.h.
References getValues().
Referenced by getValues().
|
inline |
Returns the pointer to the wrapped untyped virtual volume.
Definition at line 281 of file mlTVirtualVolume.h.
|
inline |
Returns typed pointer to data of written page with page id wp.
| wp | is the page id of the written page to access and it must be within [0, getNumWrittenPages()-1]. |
Definition at line 473 of file mlTVirtualVolume.h.
|
inline |
Returns true if voxel is mapped into memory, otherwise it returns false.
Definition at line 311 of file mlTVirtualVolume.h.
|
inlinestatic |
Definition at line 494 of file mlTVirtualVolume.h.
References TVirtualVolume().
|
inline |
Shift cursor to current position + offset.
Definition at line 331 of file mlTVirtualVolume.h.
Referenced by moveCursorByOffsetWrapped().
|
inlinestatic |
Definition at line 520 of file mlTVirtualVolume.h.
References moveCursorByOffset(), and TVirtualVolume().
|
inline |
Definition at line 318 of file mlTVirtualVolume.h.
Referenced by moveCursorCWrapped().
|
inlinestatic |
Definition at line 511 of file mlTVirtualVolume.h.
References moveCursorC(), and TVirtualVolume().
|
inline |
Definition at line 319 of file mlTVirtualVolume.h.
Referenced by moveCursorTWrapped().
|
inlinestatic |
Definition at line 512 of file mlTVirtualVolume.h.
References moveCursorT(), and TVirtualVolume().
|
inline |
Definition at line 320 of file mlTVirtualVolume.h.
Referenced by moveCursorUWrapped().
|
inlinestatic |
Definition at line 513 of file mlTVirtualVolume.h.
References moveCursorU(), and TVirtualVolume().
|
inline |
Definition at line 315 of file mlTVirtualVolume.h.
Referenced by copyMaskToSubImage(), and moveCursorXWrapped().
|
inline |
Special cursor move: Increment x coordinate of cursor. When going out of image set x to zero and increase y. If y overflows then increment z etc. So an image can easily scanned as a one dimensional sequence. If the cursor is on the last voxel it won't be moved outside the image; it remains there without throwing exceptions or causing errors. It just returns false instead of true. So the sequence resetCursor(); do {} while (moveCursorXWrapAround()); permits easy image scanning.
Special cursor move: Increment x coordinate of cursor. When going out of image set x to zero and increase y. If y overflows then increment z etc. So an image can easily scanned as a one dimensional sequence. If the cursor is on the last voxel it won't be moved outside the image; it remains there without throwing exceptions or causing errors. It just returns false instead of true. So the sequence resetCursor(); do {} while (moveCursorXWrapAround()); permits easy scanning of the whole virtual volume image.
Definition at line 1028 of file mlTVirtualVolume.h.
References moveCursorXWrapAround().
Referenced by moveCursorXWrapAround().
|
inlinestatic |
Definition at line 522 of file mlTVirtualVolume.h.
References TVirtualVolume().
|
inlinestatic |
Definition at line 508 of file mlTVirtualVolume.h.
References moveCursorX(), and TVirtualVolume().
|
inline |
Definition at line 316 of file mlTVirtualVolume.h.
Referenced by moveCursorYWrapped().
|
inlinestatic |
Definition at line 509 of file mlTVirtualVolume.h.
References moveCursorY(), and TVirtualVolume().
|
inline |
Definition at line 317 of file mlTVirtualVolume.h.
Referenced by moveCursorZWrapped().
|
inlinestatic |
Definition at line 510 of file mlTVirtualVolume.h.
References moveCursorZ(), and TVirtualVolume().
|
inlineprotected |
Hide the default assignment operator to avoid incorrect usage due to missing initializations.
Definition at line 218 of file mlTVirtualVolume.h.
References TVirtualVolume().
|
inline |
Set cursor to default position (0,0,0,0,0,0).
Set cursor to default position (0,0,0,0,0,0).
Definition at line 1012 of file mlTVirtualVolume.h.
References resetCursor().
Referenced by resetCursor(), and resetCursorWrapped().
|
inlinestatic |
Definition at line 521 of file mlTVirtualVolume.h.
References resetCursor(), and TVirtualVolume().
|
inline |
Definition at line 325 of file mlTVirtualVolume.h.
Referenced by reverseMoveCursorCWrapped().
|
inlinestatic |
Definition at line 517 of file mlTVirtualVolume.h.
References reverseMoveCursorC(), and TVirtualVolume().
|
inline |
Definition at line 326 of file mlTVirtualVolume.h.
Referenced by reverseMoveCursorTWrapped().
|
inlinestatic |
Definition at line 518 of file mlTVirtualVolume.h.
References reverseMoveCursorT(), and TVirtualVolume().
|
inline |
Definition at line 327 of file mlTVirtualVolume.h.
Referenced by reverseMoveCursorUWrapped().
|
inlinestatic |
Definition at line 519 of file mlTVirtualVolume.h.
References reverseMoveCursorU(), and TVirtualVolume().
|
inline |
Definition at line 322 of file mlTVirtualVolume.h.
Referenced by reverseMoveCursorXWrapped().
|
inlinestatic |
Definition at line 514 of file mlTVirtualVolume.h.
References reverseMoveCursorX(), and TVirtualVolume().
|
inline |
Definition at line 323 of file mlTVirtualVolume.h.
Referenced by reverseMoveCursorYWrapped().
|
inlinestatic |
Definition at line 515 of file mlTVirtualVolume.h.
References reverseMoveCursorY(), and TVirtualVolume().
|
inline |
Definition at line 324 of file mlTVirtualVolume.h.
Referenced by reverseMoveCursorZWrapped().
|
inlinestatic |
Definition at line 516 of file mlTVirtualVolume.h.
References reverseMoveCursorZ(), and TVirtualVolume().
|
inline |
Set the cursor to a certain position.
Definition at line 299 of file mlTVirtualVolume.h.
Referenced by copyMaskToSubImage(), and setCursorPositionWrapped().
|
inlinestatic |
Definition at line 495 of file mlTVirtualVolume.h.
References setCursorPosition(), and TVirtualVolume().
|
inline |
Set value under cursor and lock page.
Definition at line 995 of file mlTVirtualVolume.h.
References ml::PageBuffer::_getPageFkt, ml::PageBuffer::_locked, and setCursorValue().
Referenced by setCursorValue(), setDoubleCursorValueWrapped(), setInt64CursorValueWrapped(), setIntCursorValueWrapped(), and setLDoubleCursorValueWrapped().
|
inlinestatic |
Definition at line 502 of file mlTVirtualVolume.h.
References setCursorValue(), and TVirtualVolume().
|
inlinestatic |
Definition at line 498 of file mlTVirtualVolume.h.
References setValue(), and TVirtualVolume().
|
inlinestatic |
Definition at line 501 of file mlTVirtualVolume.h.
References setCursorValue(), and TVirtualVolume().
|
inlinestatic |
Definition at line 497 of file mlTVirtualVolume.h.
References setValue(), and TVirtualVolume().
|
inlinestatic |
Definition at line 500 of file mlTVirtualVolume.h.
References setCursorValue(), and TVirtualVolume().
|
inlinestatic |
Definition at line 496 of file mlTVirtualVolume.h.
References setValue(), and TVirtualVolume().
|
inlinestatic |
Definition at line 503 of file mlTVirtualVolume.h.
References setCursorValue(), and TVirtualVolume().
|
inlinestatic |
Definition at line 499 of file mlTVirtualVolume.h.
References setValue(), and TVirtualVolume().
|
inline |
Write a voxel into the virtual volume. The position must be within the valid image area. Written pages are hold in memory until vVol is deleted.
Definition at line 296 of file mlTVirtualVolume.h.
Referenced by copyFromSubImage(), fill(), setDoubleValueWrapped(), setInt64ValueWrapped(), setIntValueWrapped(), and setLDoubleValueWrapped().