|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once |
|
|
|
|
|
#include <ctime> |
|
|
#include <memory> |
|
|
#include <string> |
|
|
#include <utility> |
|
|
#include <vector> |
|
|
|
|
|
#include <opencv2/core/core.hpp> |
|
|
#include <opencv2/highgui/highgui.hpp> |
|
|
#include <opencv2/imgproc/imgproc.hpp> |
|
|
|
|
|
#include "paddle_api.h" |
|
|
|
|
|
#include "include/config_parser.h" |
|
|
#include "include/keypoint_postprocess.h" |
|
|
#include "include/preprocess_op.h" |
|
|
|
|
|
using namespace paddle::lite_api; |
|
|
|
|
|
namespace PaddleDetection { |
|
|
|
|
|
struct KeyPointResult { |
|
|
|
|
|
std::vector<float> keypoints; |
|
|
int num_joints = -1; |
|
|
}; |
|
|
|
|
|
|
|
|
cv::Mat VisualizeKptsResult(const cv::Mat& img, |
|
|
const std::vector<KeyPointResult>& results, |
|
|
const std::vector<int>& colormap, |
|
|
float threshold = 0.2); |
|
|
|
|
|
class KeyPointDetector { |
|
|
public: |
|
|
explicit KeyPointDetector(const std::string& model_dir, |
|
|
int cpu_threads = 1, |
|
|
const int batch_size = 1, |
|
|
bool use_dark = true) { |
|
|
config_.load_config(model_dir); |
|
|
threshold_ = config_.draw_threshold_; |
|
|
use_dark_ = use_dark; |
|
|
preprocessor_.Init(config_.preprocess_info_); |
|
|
printf("before keypoint detector\n"); |
|
|
LoadModel(model_dir, cpu_threads); |
|
|
printf("create keypoint detector\n"); |
|
|
} |
|
|
|
|
|
|
|
|
void LoadModel(std::string model_file, int num_theads); |
|
|
|
|
|
|
|
|
void Predict(const std::vector<cv::Mat> imgs, |
|
|
std::vector<std::vector<float>>& center, |
|
|
std::vector<std::vector<float>>& scale, |
|
|
const int warmup = 0, |
|
|
const int repeats = 1, |
|
|
std::vector<KeyPointResult>* result = nullptr, |
|
|
std::vector<double>* times = nullptr); |
|
|
|
|
|
|
|
|
const std::vector<std::string>& GetLabelList() const { |
|
|
return config_.label_list_; |
|
|
} |
|
|
|
|
|
bool use_dark(){return this->use_dark_;} |
|
|
|
|
|
inline float get_threshold() {return threshold_;}; |
|
|
|
|
|
private: |
|
|
|
|
|
void Preprocess(const cv::Mat& image_mat); |
|
|
|
|
|
void Postprocess(std::vector<float>& output, |
|
|
std::vector<int64_t>& output_shape, |
|
|
std::vector<int64_t>& idxout, |
|
|
std::vector<int64_t>& idx_shape, |
|
|
std::vector<KeyPointResult>* result, |
|
|
std::vector<std::vector<float>>& center, |
|
|
std::vector<std::vector<float>>& scale); |
|
|
|
|
|
std::shared_ptr<PaddlePredictor> predictor_; |
|
|
Preprocessor preprocessor_; |
|
|
ImageBlob inputs_; |
|
|
std::vector<float> output_data_; |
|
|
std::vector<int64_t> idx_data_; |
|
|
float threshold_; |
|
|
ConfigPaser config_; |
|
|
bool use_dark_; |
|
|
}; |
|
|
|
|
|
} |
|
|
|