17 #include <opencv2/opencv.hpp> 21 #include "fastdeploy/core/fd_tensor.h" 22 #include "fastdeploy/utils/utils.h" 23 #include "fastdeploy/vision/common/result.h" 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" 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()) {
52 if (*(array + j) > min) {
57 searched.insert(res[i]);
62 void NMS(DetectionResult* output,
float iou_threshold = 0.5,
63 std::vector<int>* index =
nullptr);
65 void NMS(FaceDetectionResult* result,
float iou_threshold = 0.5);
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);
77 FASTDEPLOY_DECL std::vector<float>
78 L2Normalize(
const std::vector<float>& values);
80 FASTDEPLOY_DECL
float CosineSimilarity(
const std::vector<float>& a,
81 const std::vector<float>& b,
82 bool normalized =
true);
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},
97 {70.7299f, 92.2041f}},
98 std::array<int, 2> output_size = {112, 112});
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);
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);
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16