FAST  3.2.0
Framework for Heterogeneous Medical Image Computing and Visualization
ImageGradient.hpp
Go to the documentation of this file.
1 #ifndef IMAGE_GRADIENT_HPP
2 #define IMAGE_GRADIENT_HPP
3 
4 #include "FAST/ProcessObject.hpp"
5 #include "FAST/Data/Image.hpp"
6 
7 namespace fast {
8 
9 class FAST_EXPORT ImageGradient : public ProcessObject {
11  public:
15  void set16bitStorageFormat();
19  void set32bitStorageFormat();
20  private:
21  ImageGradient();
22  void execute();
23 
24  bool mUse16bitFormat;
25 };
26 
27 }
28 
29 
30 #endif
Image.hpp
fast
Definition: AffineTransformation.hpp:7
fast::ImageGradient
Definition: ImageGradient.hpp:9
FAST_OBJECT
#define FAST_OBJECT(className)
Definition: Object.hpp:9
ProcessObject.hpp
fast::ProcessObject
Definition: ProcessObject.hpp:22