Inviwo
0.9.10.1
Inviwo documentation
|
Reader for *.ivfs sequnce files. More...
#include <ivfsequencevolumereader.h>
Public Member Functions | |
IvfSequenceVolumeReader (const IvfSequenceVolumeReader &rhs)=default | |
IvfSequenceVolumeReader & | operator= (const IvfSequenceVolumeReader &that)=default |
virtual IvfSequenceVolumeReader * | clone () const override |
virtual std::shared_ptr< VolumeSequence > | readData (const std::string &filePath) override |
Public Member Functions inherited from inviwo::DataReaderType< VolumeSequence > | |
DataReaderType (const DataReaderType &rhs)=default | |
DataReaderType (DataReaderType &&rhs) noexcept=default | |
DataReaderType & | operator= (const DataReaderType &that)=default |
DataReaderType & | operator= (DataReaderType &&that) noexcept=default |
virtual std::shared_ptr< VolumeSequence > | readData (const std::string &filePath, MetaDataOwner *) |
Public Member Functions inherited from inviwo::DataReader | |
DataReader (const DataReader &rhs)=default | |
DataReader (DataReader &&rhs) noexcept=default | |
DataReader & | operator= (const DataReader &that)=default |
DataReader & | operator= (DataReader &&that) noexcept=default |
const std::vector< FileExtension > & | getExtensions () const |
void | addExtension (FileExtension ext) |
Reader for *.ivfs sequnce files.
Supports reading a volume sequence from disk.
The expected structure of the ivfs sequence files is:
<?xml version="1.0" ?> <InviwoWorkspace version="2"> <volumes> <volume content="./relative/path/to/volume00.ivf" /> <volume content="./relative/path/to/volume01.ivf" /> ... <volume content="./relative/path/to/volumeNN.ivf" /> </volumes> </InviwoWorkspace> *
|
overridevirtual |
Read a ivfs volume sequence from disk
filePath | path the the ivfs file |
Implements inviwo::DataReaderType< VolumeSequence >.