| | #ifndef OPENPOSE_3D_W_POSE_TRIANGULATION_HPP |
| | #define OPENPOSE_3D_W_POSE_TRIANGULATION_HPP |
| |
|
| | #include <openpose/core/common.hpp> |
| | #include <openpose/3d/poseTriangulation.hpp> |
| | #include <openpose/thread/worker.hpp> |
| |
|
| | namespace op |
| | { |
| | template<typename TDatums> |
| | class WPoseTriangulation : public Worker<TDatums> |
| | { |
| | public: |
| | explicit WPoseTriangulation(const std::shared_ptr<PoseTriangulation>& poseTriangulation); |
| |
|
| | virtual ~WPoseTriangulation(); |
| |
|
| | void initializationOnThread(); |
| |
|
| | void work(TDatums& tDatums); |
| |
|
| | private: |
| | const std::shared_ptr<PoseTriangulation> spPoseTriangulation; |
| |
|
| | DELETE_COPY(WPoseTriangulation); |
| | }; |
| | } |
| |
|
| |
|
| |
|
| |
|
| |
|
| | |
| | #include <openpose/utilities/pointerContainer.hpp> |
| | namespace op |
| | { |
| | template<typename TDatums> |
| | WPoseTriangulation<TDatums>::WPoseTriangulation(const std::shared_ptr<PoseTriangulation>& poseTriangulation) : |
| | spPoseTriangulation{poseTriangulation} |
| | { |
| | } |
| |
|
| | template<typename TDatums> |
| | WPoseTriangulation<TDatums>::~WPoseTriangulation() |
| | { |
| | } |
| |
|
| | template<typename TDatums> |
| | void WPoseTriangulation<TDatums>::initializationOnThread() |
| | { |
| | try |
| | { |
| | spPoseTriangulation->initializationOnThread(); |
| | } |
| | catch (const std::exception& e) |
| | { |
| | error(e.what(), __LINE__, __FUNCTION__, __FILE__); |
| | } |
| | } |
| |
|
| | template<typename TDatums> |
| | void WPoseTriangulation<TDatums>::work(TDatums& tDatums) |
| | { |
| | try |
| | { |
| | if (checkNoNullNorEmpty(tDatums)) |
| | { |
| | |
| | opLogIfDebug("", Priority::Low, __LINE__, __FUNCTION__, __FILE__); |
| | |
| | const auto profilerKey = Profiler::timerInit(__LINE__, __FUNCTION__, __FILE__); |
| | |
| | std::vector<Matrix> cameraMatrices; |
| | std::vector<Array<float>> poseKeypointVector; |
| | std::vector<Array<float>> faceKeypointVector; |
| | std::vector<Array<float>> leftHandKeypointVector; |
| | std::vector<Array<float>> rightHandKeypointVector; |
| | std::vector<Point<int>> imageSizes; |
| | for (auto& tDatumPtr : *tDatums) |
| | { |
| | poseKeypointVector.emplace_back(tDatumPtr->poseKeypoints); |
| | faceKeypointVector.emplace_back(tDatumPtr->faceKeypoints); |
| | leftHandKeypointVector.emplace_back(tDatumPtr->handKeypoints[0]); |
| | rightHandKeypointVector.emplace_back(tDatumPtr->handKeypoints[1]); |
| | cameraMatrices.emplace_back(tDatumPtr->cameraMatrix); |
| | imageSizes.emplace_back( |
| | Point<int>{tDatumPtr->cvInputData.cols(), tDatumPtr->cvInputData.rows()}); |
| | } |
| | |
| | auto poseKeypoints3Ds = spPoseTriangulation->reconstructArray( |
| | {poseKeypointVector, faceKeypointVector, leftHandKeypointVector, rightHandKeypointVector}, |
| | cameraMatrices, imageSizes); |
| | |
| | for (auto& tDatumPtr : *tDatums) |
| | { |
| | tDatumPtr->poseKeypoints3D = poseKeypoints3Ds[0]; |
| | tDatumPtr->faceKeypoints3D = poseKeypoints3Ds[1]; |
| | tDatumPtr->handKeypoints3D[0] = poseKeypoints3Ds[2]; |
| | tDatumPtr->handKeypoints3D[1] = poseKeypoints3Ds[3]; |
| | } |
| | |
| | Profiler::timerEnd(profilerKey); |
| | Profiler::printAveragedTimeMsOnIterationX(profilerKey, __LINE__, __FUNCTION__, __FILE__); |
| | |
| | opLogIfDebug("", Priority::Low, __LINE__, __FUNCTION__, __FILE__); |
| | } |
| | } |
| | catch (const std::exception& e) |
| | { |
| | this->stop(); |
| | tDatums = nullptr; |
| | error(e.what(), __LINE__, __FUNCTION__, __FILE__); |
| | } |
| | } |
| |
|
| | COMPILE_TEMPLATE_DATUM(WPoseTriangulation); |
| | } |
| |
|
| | #endif |
| |
|