|
MRVOXELS_API bool | isDicomFile (const std::filesystem::path &path, std::string *seriesUid=nullptr) |
|
MRVOXELS_API std::vector< Expected< LoadDCMResult > > | loadDCMsFolder (const std::filesystem::path &path, unsigned maxNumThreads=4, const ProgressCallback &cb={}) |
| Loads 3D all volumetric data from DICOM files in a folder.
|
|
MRVOXELS_API Expected< LoadDCMResult > | loadDCMFolder (const std::filesystem::path &path, unsigned maxNumThreads=4, const ProgressCallback &cb={}) |
| Loads 3D first volumetric data from DICOM files in a folder.
|
|
MRVOXELS_API std::vector< Expected< DicomVolume > > | loadDicomsFolder (const std::filesystem::path &path, unsigned maxNumThreads=4, const ProgressCallback &cb={}) |
| Loads 3D all volumetric data from DICOM files in a folder.
|
|
MRVOXELS_API Expected< DicomVolume > | loadDicomFolder (const std::filesystem::path &path, unsigned maxNumThreads=4, const ProgressCallback &cb={}) |
| Loads 3D first volumetric data from DICOM files in a folder.
|
|
MRVOXELS_API std::vector< Expected< LoadDCMResult > > | loadDCMFolderTree (const std::filesystem::path &path, unsigned maxNumThreads=4, const ProgressCallback &cb={}) |
| Loads every subfolder with DICOM volume as new object.
|
|
MRVOXELS_API Expected< std::shared_ptr< ObjectVoxels > > | createObjectVoxels (const LoadDCMResult &dcm, const ProgressCallback &cb={}) |
| converts LoadDCMResult in ObjectVoxels
|
|
MRVOXELS_API Expected< DicomVolume > | loadDicomFile (const std::filesystem::path &path, const ProgressCallback &cb={}) |
| Loads 3D volumetric data from a single DICOM file.
|
|
MRVOXELS_API Expected< VdbVolume > | fromRaw (const std::filesystem::path &file, const RawParameters ¶ms, const ProgressCallback &cb={}) |
| Load raw voxels from file with provided parameters.
|
|
MRVOXELS_API Expected< VdbVolume > | fromRaw (std::istream &in, const RawParameters ¶ms, const ProgressCallback &cb={}) |
|
MRVOXELS_API Expected< RawParameters > | findRawParameters (std::filesystem::path &file) |
|
MRVOXELS_API Expected< VdbVolume > | fromRaw (const std::filesystem::path &file, const ProgressCallback &cb={}) |
| Load raw voxels file, parsing parameters from name.
|
|
MRVOXELS_API Expected< std::vector< VdbVolume > > | fromVdb (const std::filesystem::path &file, const ProgressCallback &cb={}) |
| Load all voxel volumes from OpenVDB file.
|
|
MRVOXELS_API Expected< VdbVolume > | fromGav (const std::filesystem::path &file, const ProgressCallback &cb={}) |
| Load voxel from Gav-file with micro CT reconstruction.
|
|
MRVOXELS_API Expected< VdbVolume > | fromGav (std::istream &in, const ProgressCallback &cb={}) |
| Load voxel from Gav-stream with micro CT reconstruction.
|
|
MRVOXELS_API Expected< std::vector< VdbVolume > > | fromAnySupportedFormat (const std::filesystem::path &file, const ProgressCallback &cb={}) |
| Detects the format from file extension and loads voxels from it.
|
|
MRVOXELS_API Expected< VdbVolume > | loadTiffDir (const LoadingTiffSettings &settings) |
| Load voxels from a set of TIFF files.
|
|