FAST  3.2.0
Framework for Heterogeneous Medical Image Computing and Visualization
TensorToSegmentation.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 TensorToSegmentation : public ProcessObject {
9  public:
10  void setThreshold(float threshold);
11  float getThreshold() const;
12  void loadAttributes();
13  protected:
15  void execute() override;
16  float m_threshold = 0.5f;
17 };
18 
19 }
fast
Definition: AffineTransformation.hpp:7
fast::TensorToSegmentation
Definition: TensorToSegmentation.hpp:7
FAST_OBJECT
#define FAST_OBJECT(className)
Definition: Object.hpp:9
ProcessObject.hpp
fast::ProcessObject
Definition: ProcessObject.hpp:22