FAST  3.2.0
Framework for Heterogeneous Medical Image Computing and Visualization
TissueSegmentation.hpp
Go to the documentation of this file.
1 #pragma once
2 
4 
5 namespace fast {
6 
7 class FAST_EXPORT TissueSegmentation : public SegmentationAlgorithm {
9  public:
14  void setThreshold(int thresh);
18  int getThreshold() const;
23  void setDilate(int radius);
27  int getDilate() const;
32  void setErode(int radius);
36  int getErode() const;
37  protected:
38  void execute();
40  private:
41  int m_dilate = 9;
42  int m_erode = 9;
43  int m_thresh = 85;
44 };
45 
46 }
fast::TissueSegmentation
Definition: TissueSegmentation.hpp:7
fast
Definition: AffineTransformation.hpp:7
FAST_OBJECT
#define FAST_OBJECT(className)
Definition: Object.hpp:9
SegmentationAlgorithm.hpp
fast::SegmentationAlgorithm
Definition: SegmentationAlgorithm.hpp:9