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" 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);
40 void SetDetDBThresh(
double det_db_thresh) { det_db_thresh_ = det_db_thresh; }
46 det_db_box_thresh_ = det_db_box_thresh;
53 det_db_unclip_ratio_ = det_db_unclip_ratio;
60 det_db_score_mode_ = det_db_score_mode;
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);
void SetDetDBScoreMode(const std::string &det_db_score_mode)
Set det_db_score_mode for the detection postprocess, default is 'slow'.
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