OpenPose  1.0.0rc2
OpenPose: A Real-Time Multi-Person Key-Point Detection And Multi-Threading C++ Library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
net.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_NET_NET_HPP
2 #define OPENPOSE_NET_NET_HPP
3 
5 
6 namespace op
7 {
8  class OP_API Net
9  {
10  public:
11  virtual void initializationOnThread() = 0;
12 
13  virtual void forwardPass(const Array<float>& inputData) const = 0;
14  };
15 }
16 
17 #endif // OPENPOSE_NET_NET_HPP
Definition: net.hpp:8
#define OP_API
Definition: macros.hpp:15