FastDeploy  latest
Fast & Easy to Deploy!
det_postprocessor.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/common/processors/transform.h"
17 #include "fastdeploy/vision/common/result.h"
18 #include "fastdeploy/vision/ocr/ppocr/utils/ocr_postprocess_op.h"
19 
20 namespace fastdeploy {
21 namespace vision {
22 
23 namespace ocr {
26 class FASTDEPLOY_DECL DBDetectorPostprocessor {
27  public:
35  bool Run(const std::vector<FDTensor>& tensors,
36  std::vector<std::vector<std::array<int, 8>>>* results,
37  const std::vector<std::array<int, 4>>& batch_det_img_info);
38 
40  void SetDetDBThresh(double det_db_thresh) { det_db_thresh_ = det_db_thresh; }
42  double GetDetDBThresh() const { return det_db_thresh_; }
43 
45  void SetDetDBBoxThresh(double det_db_box_thresh) {
46  det_db_box_thresh_ = det_db_box_thresh;
47  }
49  double GetDetDBBoxThresh() const { return det_db_box_thresh_; }
50 
52  void SetDetDBUnclipRatio(double det_db_unclip_ratio) {
53  det_db_unclip_ratio_ = det_db_unclip_ratio;
54  }
56  double GetDetDBUnclipRatio() const { return det_db_unclip_ratio_; }
57 
59  void SetDetDBScoreMode(const std::string& det_db_score_mode) {
60  det_db_score_mode_ = det_db_score_mode;
61  }
63  std::string GetDetDBScoreMode() const { return det_db_score_mode_; }
64 
66  void SetUseDilation(int use_dilation) { use_dilation_ = use_dilation; }
68  int GetUseDilation() const { return use_dilation_; }
69 
70 
71  private:
72  double det_db_thresh_ = 0.3;
73  double det_db_box_thresh_ = 0.6;
74  double det_db_unclip_ratio_ = 1.5;
75  std::string det_db_score_mode_ = "slow";
76  bool use_dilation_ = false;
77  PostProcessor util_post_processor_;
78  bool SingleBatchPostprocessor(const float* out_data, int n2, int n3,
79  const std::array<int, 4>& det_img_info,
80  std::vector<std::array<int, 8>>* boxes_result);
81 };
82 
83 } // namespace ocr
84 } // namespace vision
85 } // namespace fastdeploy
void SetDetDBScoreMode(const std::string &det_db_score_mode)
Set det_db_score_mode for the detection postprocess, default is &#39;slow&#39;.
Definition: det_postprocessor.h:59
double GetDetDBUnclipRatio() const
Get det_db_unclip_ratio_ of the detection postprocess.
Definition: det_postprocessor.h:56
void SetDetDBBoxThresh(double det_db_box_thresh)
Set det_db_box_thresh for the detection postprocess, default is 0.6.
Definition: det_postprocessor.h:45
void SetDetDBThresh(double det_db_thresh)
Set det_db_thresh for the detection postprocess, default is 0.3.
Definition: det_postprocessor.h:40
int GetUseDilation() const
Get use_dilation of the detection postprocess.
Definition: det_postprocessor.h:68
void SetDetDBUnclipRatio(double det_db_unclip_ratio)
Set det_db_unclip_ratio for the detection postprocess, default is 1.5.
Definition: det_postprocessor.h:52
double GetDetDBBoxThresh() const
Get det_db_box_thresh of the detection postprocess.
Definition: det_postprocessor.h:49
Postprocessor object for DBDetector serials model.
Definition: det_postprocessor.h:26
void SetUseDilation(int use_dilation)
Set use_dilation for the detection postprocess, default is fasle.
Definition: det_postprocessor.h:66
std::string GetDetDBScoreMode() const
Get det_db_score_mode_ of the detection postprocess.
Definition: det_postprocessor.h:63
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16
double GetDetDBThresh() const
Get det_db_thresh of the detection postprocess.
Definition: det_postprocessor.h:42