FastDeploy  latest
Fast & Easy to Deploy!
pptinypose_utils.h
1 // Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 #include "fastdeploy/vision/utils/utils.h"
17 
18 namespace fastdeploy {
19 namespace vision {
20 namespace keypointdetection {
21 
22 cv::Point2f Get3dPoint(const cv::Point2f& a, const cv::Point2f& b);
23 
24 std::vector<float> GetDir(const float src_point_x, const float src_point_y,
25  const float rot_rad);
26 
27 void GetAffineTransform(const std::vector<float>& center,
28  const std::vector<float>& scale, const float rot,
29  const std::vector<int>& output_size, cv::Mat* trans,
30  const int inv);
31 
32 void AffineTransform(const float pt_x, const float pt_y, const cv::Mat& trans,
33  std::vector<float>* preds, const int p);
34 
35 void TransformPreds(std::vector<float>& coords,
36  const std::vector<float>& center,
37  const std::vector<float>& scale,
38  const std::vector<int>& output_size,
39  const std::vector<int>& dim,
40  std::vector<float>* target_coords);
41 
42 void GetFinalPredictions(const std::vector<float>& heatmap,
43  const std::vector<int>& dim,
44  const std::vector<int64_t>& idxout,
45  const std::vector<float>& center,
46  const std::vector<float> scale,
47  std::vector<float>* preds, const bool DARK);
48 
49 } // namespace keypointdetection
50 } // namespace vision
51 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16