OpenPose  1.7.0
The first real-time multi-person system to jointly detect human body, hand, facial, and foot keypoints
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 
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
std::vector< std::array< Rectangle< float >, 2 > > detectHands()
virtual ~HandDetectorFromTxt()
HandDetectorFromTxt(const std::string &txtDirectoryPath)
#define OP_API
Definition: macros.hpp:18
#define DELETE_COPY(className)
Definition: macros.hpp:32