FAST  3.2.0
Framework for Heterogeneous Medical Image Computing and Visualization
BoundingBoxNetwork.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include "NeuralNetwork.hpp"
4 
5 namespace fast {
6 class FAST_EXPORT BoundingBoxNetwork : public NeuralNetwork {
8  public:
9  void setThreshold(float threshold);
10  void loadAttributes() override;
11  void setAnchors(std::vector<std::vector<Vector2f>> anchors);
12  private:
14  void execute() override;
15 
16  float m_threshold;
17  std::vector<std::vector<Vector2f>> m_anchors;
18 
19 
20 };
21 
22 }
fast
Definition: AffineTransformation.hpp:7
fast::BoundingBoxNetwork
Definition: BoundingBoxNetwork.hpp:6
FAST_OBJECT
#define FAST_OBJECT(className)
Definition: Object.hpp:9
NeuralNetwork.hpp
fast::NeuralNetwork
Definition: NeuralNetwork.hpp:77