| #ifndef OPENPOSE_THREAD_W_ID_GENERATOR_HPP |
| #define OPENPOSE_THREAD_W_ID_GENERATOR_HPP |
|
|
| #include <queue> |
| #include <openpose/core/common.hpp> |
| #include <openpose/thread/worker.hpp> |
| #include <openpose/utilities/pointerContainer.hpp> |
|
|
| namespace op |
| { |
| template<typename TDatums> |
| class WIdGenerator : public Worker<TDatums> |
| { |
| public: |
| explicit WIdGenerator(); |
|
|
| virtual ~WIdGenerator(); |
|
|
| void initializationOnThread(); |
|
|
| void work(TDatums& tDatums); |
|
|
| private: |
| unsigned long long mGlobalCounter; |
|
|
| DELETE_COPY(WIdGenerator); |
| }; |
| } |
|
|
|
|
|
|
|
|
|
|
| |
| #include <openpose/utilities/pointerContainer.hpp> |
| namespace op |
| { |
| template<typename TDatums> |
| WIdGenerator<TDatums>::WIdGenerator() : |
| mGlobalCounter{0ull} |
| { |
| } |
|
|
| template<typename TDatums> |
| WIdGenerator<TDatums>::~WIdGenerator() |
| { |
| } |
|
|
| template<typename TDatums> |
| void WIdGenerator<TDatums>::initializationOnThread() |
| { |
| } |
|
|
| template<typename TDatums> |
| void WIdGenerator<TDatums>::work(TDatums& tDatums) |
| { |
| try |
| { |
| if (checkNoNullNorEmpty(tDatums)) |
| { |
| |
| opLogIfDebug("", Priority::Low, __LINE__, __FUNCTION__, __FILE__); |
| |
| const auto profilerKey = Profiler::timerInit(__LINE__, __FUNCTION__, __FILE__); |
| |
| for (auto& tDatumPtr : *tDatums) |
| |
| if (tDatumPtr->id == std::numeric_limits<unsigned long long>::max()) |
| tDatumPtr->id = mGlobalCounter; |
| |
| const auto& tDatumPtr = (*tDatums)[0]; |
| if (tDatumPtr->subId == tDatumPtr->subIdMax) |
| mGlobalCounter++; |
| |
| 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(WIdGenerator); |
| } |
|
|
| #endif |
|
|