FastDeploy  latest
Fast & Easy to Deploy!
ocr_postprocess_op.h
1 // Copyright (c) 2020 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 <iomanip>
18 #include <iostream>
19 #include <map>
20 #include <ostream>
21 #include <vector>
22 #include "opencv2/core.hpp"
23 #include "opencv2/imgproc.hpp"
24 
25 #include <cstring>
26 #include <fstream>
27 #include <numeric>
28 
29 #include "fastdeploy/vision/ocr/ppocr/utils/clipper.h"
30 
31 namespace fastdeploy {
32 namespace vision {
33 namespace ocr {
34 
35 class PostProcessor {
36  public:
37  void GetContourArea(const std::vector<std::vector<float>> &box,
38  float unclip_ratio, float &distance);
39 
40  cv::RotatedRect UnClip(std::vector<std::vector<float>> box,
41  const float &unclip_ratio);
42 
43  float **Mat2Vec(cv::Mat mat);
44 
45  std::vector<std::vector<int>> OrderPointsClockwise(
46  std::vector<std::vector<int>> pts);
47 
48  std::vector<std::vector<float>> GetMiniBoxes(cv::RotatedRect box,
49  float &ssid);
50 
51  float BoxScoreFast(std::vector<std::vector<float>> box_array, cv::Mat pred);
52  float PolygonScoreAcc(std::vector<cv::Point> contour, cv::Mat pred);
53 
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);
57 
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);
61 
62  private:
63  static bool XsortInt(std::vector<int> a, std::vector<int> b);
64 
65  static bool XsortFp32(std::vector<float> a, std::vector<float> b);
66 
67  std::vector<std::vector<float>> Mat2Vector(cv::Mat mat);
68 
69  inline int _max(int a, int b) { return a >= b ? a : b; }
70 
71  inline int _min(int a, int b) { return a >= b ? b : a; }
72 
73  template <class T>
74  inline T clamp(T x, T min, T max) {
75  if (x > max) return max;
76  if (x < min) return min;
77  return x;
78  }
79 
80  inline float clampf(float x, float min, float max) {
81  if (x > max) return max;
82  if (x < min) return min;
83  return x;
84  }
85 };
86 
87 } // namespace ocr
88 } // namespace vision
89 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16