FAST  3.2.0
Framework for Heterogeneous Medical Image Computing and Visualization
Dilation.hpp
Go to the documentation of this file.
1 #ifndef FAST_DILATION_HPP_
2 #define FAST_DILATION_HPP_
3 
4 #include "FAST/ProcessObject.hpp"
5 
6 namespace fast {
7 class FAST_EXPORT Dilation : public ProcessObject {
9 public:
14  void setStructuringElementSize(int size);
15 private:
16  Dilation();
17  void execute();
18 
19  int mSize;
20 
21 };
22 }
23 
24 #endif
fast
Definition: AffineTransformation.hpp:7
fast::Dilation
Definition: Dilation.hpp:7
FAST_OBJECT
#define FAST_OBJECT(className)
Definition: Object.hpp:9
ProcessObject.hpp
fast::ProcessObject
Definition: ProcessObject.hpp:22