// 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 #include #include #include std::vector get_3rd_point(std::vector& a, std::vector& b); std::vector get_dir(float src_point_x, float src_point_y, float rot_rad); void affine_tranform( float pt_x, float pt_y, cv::Mat& trans, std::vector& preds, int p); cv::Mat get_affine_transform(std::vector& center, std::vector& scale, float rot, std::vector& output_size, int inv); void transform_preds(std::vector& coords, std::vector& center, std::vector& scale, std::vector& output_size, std::vector& dim, std::vector& target_coords); void box_to_center_scale(std::vector& box, int width, int height, std::vector& center, std::vector& scale); void get_max_preds(float* heatmap, std::vector& dim, std::vector& preds, float* maxvals, int batchid, int joint_idx); void get_final_preds(std::vector& heatmap, std::vector& dim, std::vector& idxout, std::vector& idxdim, std::vector& center, std::vector scale, std::vector& preds, int batchid, bool DARK = true);