FastDeploy  latest
Fast & Easy to Deploy!
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 
17 #include <opencv2/opencv.hpp>
18 #include <set>
19 #include <vector>
20 
21 #include "fastdeploy/core/fd_tensor.h"
22 #include "fastdeploy/utils/utils.h"
23 #include "fastdeploy/vision/common/result.h"
24 
25 // #include "unsupported/Eigen/CXX11/Tensor"
26 #include "fastdeploy/function/reduce.h"
27 #include "fastdeploy/function/softmax.h"
28 #include "fastdeploy/function/transpose.h"
29 #include "fastdeploy/vision/common/processors/mat.h"
30 
31 namespace fastdeploy {
32 namespace vision {
33 namespace utils {
34 // topk sometimes is a very small value
35 // so this implementation is simple but I don't think it will
36 // cost too much time
37 // Also there may be cause problem since we suppose the minimum value is
38 // -99999999
39 // Do not use this function on array which topk contains value less than
40 // -99999999
41 template <typename T>
42 std::vector<int32_t> TopKIndices(const T* array, int array_size, int topk) {
43  topk = std::min(array_size, topk);
44  std::vector<int32_t> res(topk);
45  std::set<int32_t> searched;
46  for (int32_t i = 0; i < topk; ++i) {
47  T min = static_cast<T>(-99999999);
48  for (int32_t j = 0; j < array_size; ++j) {
49  if (searched.find(j) != searched.end()) {
50  continue;
51  }
52  if (*(array + j) > min) {
53  res[i] = j;
54  min = *(array + j);
55  }
56  }
57  searched.insert(res[i]);
58  }
59  return res;
60 }
61 
62 void NMS(DetectionResult* output, float iou_threshold = 0.5,
63  std::vector<int>* index = nullptr);
64 
65 void NMS(FaceDetectionResult* result, float iou_threshold = 0.5);
66 
68 FASTDEPLOY_DECL void SortDetectionResult(DetectionResult* result);
69 FASTDEPLOY_DECL void SortDetectionResult(FaceDetectionResult* result);
71 FASTDEPLOY_DECL void LexSortDetectionResultByXY(DetectionResult* result);
73 FASTDEPLOY_DECL void LexSortOCRDetResultByXY(
74  std::vector<std::array<int, 8>>* result);
75 
77 FASTDEPLOY_DECL std::vector<float>
78 L2Normalize(const std::vector<float>& values);
79 
80 FASTDEPLOY_DECL float CosineSimilarity(const std::vector<float>& a,
81  const std::vector<float>& b,
82  bool normalized = true);
83 
91 FASTDEPLOY_DECL std::vector<cv::Mat> AlignFaceWithFivePoints(
92  cv::Mat& image, FaceDetectionResult& result,
93  std::vector<std::array<float, 2>> std_landmarks = {{38.2946f, 51.6963f},
94  {73.5318f, 51.5014f},
95  {56.0252f, 71.7366f},
96  {41.5493f, 92.3655f},
97  {70.7299f, 92.2041f}},
98  std::array<int, 2> output_size = {112, 112});
99 
100 bool CropImageByBox(Mat& src_im, Mat* dst_im, const std::vector<float>& box,
101  std::vector<float>* center, std::vector<float>* scale,
102  const float expandratio = 0.3);
103 
119 void DarkParse(const std::vector<float>& heatmap, const std::vector<int>& dim,
120  std::vector<float>* coords, const int px, const int py,
121  const int index, const int ch);
122 
123 } // namespace utils
124 } // namespace vision
125 } // namespace fastdeploy
Definition: main.h:114
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16