| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- """
- span维度自定义字段
- """
- # span是否是跨页合并的
- CROSS_PAGE = "cross_page"
- """
- block维度自定义字段
- """
- # block中lines是否被删除
- LINES_DELETED = "lines_deleted"
- # struct eqtable
- STRUCT_EQTABLE = "struct_eqtable"
- # table recognition max time default value
- TABLE_MAX_TIME_VALUE = 400
- # pp_table_result_max_length
- TABLE_MAX_LEN = 480
- # pp table structure algorithm
- TABLE_MASTER = "TableMaster"
- # table master structure dict
- TABLE_MASTER_DICT = "table_master_structure_dict.txt"
- # table master dir
- TABLE_MASTER_DIR = "table_structure_tablemaster_infer/"
- # pp detect model dir
- DETECT_MODEL_DIR = "ch_PP-OCRv3_det_infer"
- # pp rec model dir
- REC_MODEL_DIR = "ch_PP-OCRv3_rec_infer"
- # pp rec char dict path
- REC_CHAR_DICT = "ppocr_keys_v1.txt"
|