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