camenduru's picture
thanks to openpose ❤
7fc5a59
#ifndef OPENPOSE_CORE_W_CV_MAT_TO_OP_OUTPUT_HPP
#define OPENPOSE_CORE_W_CV_MAT_TO_OP_OUTPUT_HPP
#include <openpose/core/common.hpp>
#include <openpose/core/cvMatToOpOutput.hpp>
#include <openpose/thread/worker.hpp>
namespace op
{
template<typename TDatums>
class WCvMatToOpOutput : public Worker<TDatums>
{
public:
explicit WCvMatToOpOutput(const std::shared_ptr<CvMatToOpOutput>& cvMatToOpOutput);
virtual ~WCvMatToOpOutput();
void initializationOnThread();
void work(TDatums& tDatums);
private:
const std::shared_ptr<CvMatToOpOutput> spCvMatToOpOutput;
DELETE_COPY(WCvMatToOpOutput);
};
}
// Implementation
#include <openpose/utilities/openCv.hpp>
#include <openpose/utilities/pointerContainer.hpp>
namespace op
{
template<typename TDatums>
WCvMatToOpOutput<TDatums>::WCvMatToOpOutput(const std::shared_ptr<CvMatToOpOutput>& cvMatToOpOutput) :
spCvMatToOpOutput{cvMatToOpOutput}
{
}
template<typename TDatums>
WCvMatToOpOutput<TDatums>::~WCvMatToOpOutput()
{
}
template<typename TDatums>
void WCvMatToOpOutput<TDatums>::initializationOnThread()
{
}
template<typename TDatums>
void WCvMatToOpOutput<TDatums>::work(TDatums& tDatums)
{
try
{
if (checkNoNullNorEmpty(tDatums))
{
// Debugging log
opLogIfDebug("", Priority::Low, __LINE__, __FUNCTION__, __FILE__);
// T* to T
auto& tDatumsNoPtr = *tDatums;
// Profiling speed
const auto profilerKey = Profiler::timerInit(__LINE__, __FUNCTION__, __FILE__);
// cv::Mat -> float*
for (auto& tDatumPtr : tDatumsNoPtr)
tDatumPtr->outputData = spCvMatToOpOutput->createArray(
tDatumPtr->cvInputData, tDatumPtr->scaleInputToOutput, tDatumPtr->netOutputSize);
// Profiling speed
Profiler::timerEnd(profilerKey);
Profiler::printAveragedTimeMsOnIterationX(profilerKey, __LINE__, __FUNCTION__, __FILE__);
// Debugging log
opLogIfDebug("", Priority::Low, __LINE__, __FUNCTION__, __FILE__);
}
}
catch (const std::exception& e)
{
this->stop();
tDatums = nullptr;
error(e.what(), __LINE__, __FUNCTION__, __FILE__);
}
}
COMPILE_TEMPLATE_DATUM(WCvMatToOpOutput);
}
#endif // OPENPOSE_CORE_W_CV_MAT_TO_OP_OUTPUT_HPP