keypoint_postprocess.h 2.4 KB
Newer Older
Z
zhiboniu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
//   Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#pragma once

#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <vector>

std::vector<float> get_3rd_point(std::vector<float>& a, std::vector<float>& b);
std::vector<float> get_dir(float src_point_x, float src_point_y, float rot_rad);
void affine_tranform(
Z
zhiboniu 已提交
25
    float pt_x, float pt_y, cv::Mat& trans, std::vector<float>& x, int p, int num);
Z
zhiboniu 已提交
26 27 28 29 30
cv::Mat get_affine_transform(std::vector<float>& center,
                             std::vector<float>& scale,
                             float rot,
                             std::vector<int>& output_size,
                             int inv);
Z
zhiboniu 已提交
31
void transform_preds(std::vector<float>& coords,
Z
zhiboniu 已提交
32 33 34 35
                     std::vector<float>& center,
                     std::vector<float>& scale,
                     std::vector<int>& output_size,
                     std::vector<int>& dim,
Z
zhiboniu 已提交
36
                     std::vector<float>& target_coords);
Z
zhiboniu 已提交
37 38 39 40 41
void box_to_center_scale(std::vector<int>& box,
                         int width,
                         int height,
                         std::vector<float>& center,
                         std::vector<float>& scale);
Z
zhiboniu 已提交
42
void get_max_preds(std::vector<float>& heatmap,
Z
zhiboniu 已提交
43
                   std::vector<int64_t>& dim,
Z
zhiboniu 已提交
44 45
                   std::vector<float>& preds,
                   std::vector<float>& maxvals,
Z
zhiboniu 已提交
46 47
                   int batchid,
                   int joint_idx);
Z
zhiboniu 已提交
48
void get_final_preds(std::vector<float>& heatmap,
Z
zhiboniu 已提交
49
                     std::vector<int64_t>& dim,
Z
zhiboniu 已提交
50
                     std::vector<int64_t>& idxout,
Z
zhiboniu 已提交
51 52 53
                     std::vector<int64_t>& idxdim,
                     std::vector<float>& center,
                     std::vector<float> scale,
Z
zhiboniu 已提交
54 55 56
                     std::vector<float>& preds,
                     int batchid,
                     bool DARK = true);