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