File size: 574 Bytes
7fc5a59 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | #ifndef OPENPOSE_CORE_VERBOSE_PRINTER_HPP
#define OPENPOSE_CORE_VERBOSE_PRINTER_HPP
#include <openpose/core/common.hpp>
namespace op
{
class OP_API VerbosePrinter
{
public:
VerbosePrinter(const double verbose, const unsigned long long numberFrames);
virtual ~VerbosePrinter();
void printVerbose(const unsigned long long frameNumber) const;
private:
const unsigned long long mNumberFrames;
const std::string mNumberFramesString;
const double mVerbose;
};
}
#endif // OPENPOSE_CORE_VERBOSE_PRINTER_HPP
|