22 #include "opencv2/core.hpp" 23 #include "opencv2/imgproc.hpp" 29 #include "fastdeploy/vision/ocr/ppocr/utils/clipper.h" 37 void GetContourArea(
const std::vector<std::vector<float>> &box,
38 float unclip_ratio,
float &distance);
40 cv::RotatedRect UnClip(std::vector<std::vector<float>> box,
41 const float &unclip_ratio);
43 float **Mat2Vec(cv::Mat mat);
45 std::vector<std::vector<int>> OrderPointsClockwise(
46 std::vector<std::vector<int>> pts);
48 std::vector<std::vector<float>> GetMiniBoxes(cv::RotatedRect box,
51 float BoxScoreFast(std::vector<std::vector<float>> box_array, cv::Mat pred);
52 float PolygonScoreAcc(std::vector<cv::Point> contour, cv::Mat pred);
54 std::vector<std::vector<std::vector<int>>> BoxesFromBitmap(
55 const cv::Mat pred,
const cv::Mat bitmap,
const float &box_thresh,
56 const float &det_db_unclip_ratio,
const std::string &det_db_score_mode);
58 std::vector<std::vector<std::vector<int>>> FilterTagDetRes(
59 std::vector<std::vector<std::vector<int>>> boxes,
60 const std::array<int, 4>& det_img_info);
63 static bool XsortInt(std::vector<int> a, std::vector<int> b);
65 static bool XsortFp32(std::vector<float> a, std::vector<float> b);
67 std::vector<std::vector<float>> Mat2Vector(cv::Mat mat);
69 inline int _max(
int a,
int b) {
return a >= b ? a : b; }
71 inline int _min(
int a,
int b) {
return a >= b ? b : a; }
74 inline T clamp(T x, T min, T max) {
75 if (x > max)
return max;
76 if (x < min)
return min;
80 inline float clampf(
float x,
float min,
float max) {
81 if (x > max)
return max;
82 if (x < min)
return min;
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16