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
handDetectorFromTxt.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_HAND_HAND_DETECTOR_FROM_TXT_HPP
2 #define OPENPOSE_HAND_HAND_DETECTOR_FROM_TXT_HPP
3 
6 
7 namespace op
8 {
10  {
11  public:
12  explicit HandDetectorFromTxt(const std::string& txtDirectoryPath);
13 
14  virtual ~HandDetectorFromTxt();
15 
16  std::vector<std::array<Rectangle<float>, 2>> detectHands();
17 
18  private:
19  const std::string mTxtDirectoryPath;
20  const std::vector<std::string> mFilePaths;
21  long long mFrameNameCounter;
22 
24  };
25 }
26 
27 #endif // OPENPOSE_HAND_HAND_DETECTOR_FROM_TXT_HPP
#define DELETE_COPY(className)
Definition: macros.hpp:34
Definition: handDetectorFromTxt.hpp:9
#define OP_API
Definition: macros.hpp:19
std::string string
Definition: cl2.hpp:574