FAST  3.2.0
Framework for Heterogeneous Medical Image Computing and Visualization
BinaryThresholding.hpp
Go to the documentation of this file.
1 #ifndef BINARY_THRESHOLDING_HPP
2 #define BINARY_THRESHOLDING_HPP
3 
5 
6 namespace fast {
7 
8 class FAST_EXPORT BinaryThresholding : public SegmentationAlgorithm {
10  public:
11  void setLowerThreshold(float threshold);
12  void setUpperThreshold(float threshold);
13  void loadAttributes() override;
14  private:
16  void execute();
17  void waitToFinish();
18 
19  float mLowerThreshold;
20  float mUpperThreshold;
21  bool mLowerThresholdSet;
22  bool mUpperThresholdSet;
23 };
24 
25 }
26 
27 #endif
fast
Definition: AffineTransformation.hpp:7
FAST_OBJECT
#define FAST_OBJECT(className)
Definition: Object.hpp:9
fast::BinaryThresholding
Definition: BinaryThresholding.hpp:8
SegmentationAlgorithm.hpp
fast::SegmentationAlgorithm
Definition: SegmentationAlgorithm.hpp:9