Click or drag to resize
SoVRDicomFileReaderLoadInMemory Method

Load the DICOM data into contiguous memory if possible.

Namespace: OIV.VolumeViz.Readers
Assembly: OIV.VolumeViz (in OIV.VolumeViz.dll) Version: 2024.1.1.0 (2024.1.1)
Syntax
public void LoadInMemory()
Remarks

Once the data is loaded, no additional file I/O is necessary and data access calls to the reader, e.g. OIV.VolumeViz.Readers.SoVRDicomFileReader.GetSubSlice(OIV.Inventor.SbBox2i32, System.Int32, OIV.Inventor.Generic.SbNativeArray{{System.Byte}}), will be fast.

Notes:

  • This is a blocking call (does not return until all data is loaded).

  • It is not currently possible to directly access the data in memory.

  • It is not currently possible to monitor the progress of the data loading.

  • It is not currently possible to test if the data loading succeeded.

  • Do NOT call this method before setting the data source (filename or directory).

  • Do NOT call this method with an invalid data filename or directory.

    Note Note

    Member available since Open Inventor 10.3

See Also