123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- from __future__ import absolute_import
- from __future__ import division
- from __future__ import print_function
- class Config(object):
- pass
- def read_params():
- cfg = Config()
-
- cfg.det_algorithm = "DB"
- cfg.det_model_dir = "./inference/ch_PP-OCRv3_det_infer/"
- cfg.det_limit_side_len = 960
- cfg.det_limit_type = 'max'
-
- cfg.det_db_thresh = 0.3
- cfg.det_db_box_thresh = 0.6
- cfg.det_db_unclip_ratio = 1.5
- cfg.use_dilation = False
- cfg.det_db_score_mode = "fast"
-
-
-
-
- cfg.use_pdserving = False
- cfg.use_tensorrt = False
- return cfg
|