FAST  3.2.0
Framework for Heterogeneous Medical Image Computing and Visualization
WholeSlideImageImporter.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 WholeSlideImageImporter : public ProcessObject {
9  public:
10  void setFilename(std::string filename);
12  void setGrayscale(bool grayscale);
13  void loadAttributes() override;
14  private:
15  void execute();
16 
17  std::string mFilename;
18  bool mGrayscale;
19 };
20 
21 }
fast
Definition: AffineTransformation.hpp:7
fast::WholeSlideImageImporter
Definition: WholeSlideImageImporter.hpp:7
FAST_OBJECT
#define FAST_OBJECT(className)
Definition: Object.hpp:9
ProcessObject.hpp
fast::ProcessObject
Definition: ProcessObject.hpp:22