File size: 2,133 Bytes
f5bb0c0 |
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
#ifndef OPENPOSE_EXAMPLES_TUTORIAL_USER_POST_PROCESSING_HPP
#define OPENPOSE_EXAMPLES_TUTORIAL_USER_POST_PROCESSING_HPP
// Third-party dependencies
#include <opencv2/opencv.hpp>
// OpenPose dependencies
#include <openpose/core/common.hpp>
#include <openpose/core/cvMatToOpInput.hpp>
namespace op
{
/**
* Add your class description here.
*/
class UserPostProcessing
{
public:
/**
* Add your constructor description here.
*/
UserPostProcessing();
/**
* Add your initializationOnThread description here.
* This is equivalent to the constructor, but it is run in the thread where this function will operate
*/
void initializationOnThread();
/**
* Add your information about what your class does and their inputs/outputs.
* @param output is the modified cv::Mat.
* @param input is the input cv::Mat.
* @return If it is not void, add returning information here.
*/
void doSomething(cv::Mat& output, const cv::Mat& input);
private:
/**
* Description of your variable here.
*/
// bool mSomeVariableHere;
};
}
// Implementation
namespace op
{
UserPostProcessing::UserPostProcessing()
{
try
{
}
catch (const std::exception& e)
{
error(e.what(), __LINE__, __FUNCTION__, __FILE__);
}
}
void UserPostProcessing::initializationOnThread()
{
try
{
}
catch (const std::exception& e)
{
error(e.what(), __LINE__, __FUNCTION__, __FILE__);
}
}
void UserPostProcessing::doSomething(cv::Mat& output, const cv::Mat& input)
{
try
{
// Random operation on data
cv::bitwise_not(input, output);
}
catch (const std::exception& e)
{
error(e.what(), __LINE__, __FUNCTION__, __FILE__);
}
}
// COMPILE_TEMPLATE_DATUM(UserPostProcessing);
}
#endif // OPENPOSE_EXAMPLES_TUTORIAL_USER_POST_PROCESSING_HPP
|