1 #ifndef OPENPOSE_CORE_W_KEYPOINT_SCALER_HPP
2 #define OPENPOSE_CORE_W_KEYPOINT_SCALER_HPP
10 template<
typename TDatums>
14 explicit WKeypointScaler(
const std::shared_ptr<KeypointScaler>& keypointScaler);
20 void work(TDatums& tDatums);
23 std::shared_ptr<KeypointScaler> spKeypointScaler;
35 template<
typename TDatums>
37 spKeypointScaler{keypointScaler}
41 template<
typename TDatums>
46 template<
typename TDatums>
51 template<
typename TDatums>
63 for (
auto& tDatumPtr : *tDatums)
65 std::vector<Array<float>> arraysToScale{
66 tDatumPtr->poseKeypoints, tDatumPtr->handKeypoints[0],
67 tDatumPtr->handKeypoints[1], tDatumPtr->faceKeypoints};
68 spKeypointScaler->scale(
69 arraysToScale, tDatumPtr->scaleInputToOutput, tDatumPtr->scaleNetToOutput,
70 Point<int>{tDatumPtr->cvInputData.cols(), tDatumPtr->cvInputData.rows()});
72 spKeypointScaler->scale(
73 tDatumPtr->poseCandidates, tDatumPtr->scaleInputToOutput, tDatumPtr->scaleNetToOutput,
74 Point<int>{tDatumPtr->cvInputData.cols(), tDatumPtr->cvInputData.rows()});
83 catch (
const std::exception& e)
87 error(e.what(), __LINE__, __FUNCTION__, __FILE__);
static void printAveragedTimeMsOnIterationX(const std::string &key, const int line, const std::string &function, const std::string &file, const unsigned long long x=DEFAULT_X)
static const std::string timerInit(const int line, const std::string &function, const std::string &file)
static void timerEnd(const std::string &key)
WKeypointScaler(const std::shared_ptr< KeypointScaler > &keypointScaler)
void work(TDatums &tDatums)
void initializationOnThread()
virtual ~WKeypointScaler()
bool checkNoNullNorEmpty(const TPointerContainer &tPointerContainer)
COMPILE_TEMPLATE_DATUM(WPoseTriangulation)
OP_API void error(const std::string &message, const int line=-1, const std::string &function="", const std::string &file="")
void opLogIfDebug(const T &message, const Priority priority=Priority::Max, const int line=-1, const std::string &function="", const std::string &file="")