#include <mitkCacheVolumeReader.h>
Inherits mitkVolumeReader.
Inheritance diagram for mitkCacheVolumeReader:
Public Member Functions | |
virtual void | PrintSelf (ostream &os) |
void | SetConfigFileToBinary (bool b=true) |
mitkCacheVolumeReader is a volume reader to read out-of-core volume cache files. It directly reuses the existed cache files of an out-of-core volume and makes the reading process fast. To use this reader, the code snippet is:
mitkCacheVolumeReader *aReader = new mitkCacheVolumeReader; aReader->AddFileName(file); // a config file contains the volume parameters if (aReader->Run()) { mitkVolume *aVolume = aReader->GetOutput(); Using aVolume }
|
Print the necessary information about this object for the debugging purpose.
Reimplemented from mitkVolumeReader. |
|
Set if the config file is a binary file. Binary config file gives a quick and accurate reading.
|