FAST  3.2.0
Framework for Heterogeneous Medical Image Computing and Visualization
HDF5TensorImporter.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <FAST/ProcessObject.hpp>
4 
5 namespace fast {
6 
7 class FAST_EXPORT HDF5TensorImporter : public ProcessObject {
9  public:
10  void setFilename(std::string filename);
11  void setDatasetName(std::string datasetName);
12  void loadAttributes() override;
13  private:
15  void execute() override;
16 
17  std::string m_filename = "";
18  std::string m_datasetName = "tensor";
19 
20 };
21 
22 }
fast
Definition: AffineTransformation.hpp:7
FAST_OBJECT
#define FAST_OBJECT(className)
Definition: Object.hpp:9
ProcessObject.hpp
fast::HDF5TensorImporter
Definition: HDF5TensorImporter.hpp:7
fast::ProcessObject
Definition: ProcessObject.hpp:22