OpenPose  1.7.0
The first real-time multi-person system to jointly detect human body, hand, facial, and foot keypoints
verbosePrinter.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_CORE_VERBOSE_PRINTER_HPP
2 #define OPENPOSE_CORE_VERBOSE_PRINTER_HPP
3 
5 
6 namespace op
7 {
9  {
10  public:
11  VerbosePrinter(const double verbose, const unsigned long long numberFrames);
12 
13  virtual ~VerbosePrinter();
14 
15  void printVerbose(const unsigned long long frameNumber) const;
16 
17  private:
18  const unsigned long long mNumberFrames;
19  const std::string mNumberFramesString;
20  const double mVerbose;
21  };
22 }
23 
24 #endif // OPENPOSE_CORE_VERBOSE_PRINTER_HPP
virtual ~VerbosePrinter()
VerbosePrinter(const double verbose, const unsigned long long numberFrames)
void printVerbose(const unsigned long long frameNumber) const
#define OP_API
Definition: macros.hpp:18