change print to logger.debug
parent
ede5069748
commit
496887f83f
|
@ -418,7 +418,7 @@ im_show.save('result.jpg')
|
|||
| det | 前向时使用启动检测 | TRUE |
|
||||
| rec | 前向时是否启动识别 | TRUE |
|
||||
| cls | 前向时是否启动分类 (命令行模式下使用use_angle_cls控制前向是否启动分类) | FALSE |
|
||||
| show_log | 是否打印det和rec等信息 | FALSE |
|
||||
| show_log | 是否打印logger信息 | FALSE |
|
||||
| type | 执行ocr或者表格结构化, 值可选['ocr','structure'] | ocr |
|
||||
| ocr_version | OCR模型版本,可选PP-OCRv2, PP-OCR。PP-OCRv2 目前仅支持中文的检测和识别模型,PP-OCR支持中文的检测,识别,多语种识别,方向分类器等模型 | PP-OCRv2 |
|
||||
| structure_version | 表格结构化模型版本,可选 STRUCTURE。STRUCTURE支持表格结构化模型 | STRUCTURE |
|
||||
|
|
|
@ -365,7 +365,7 @@ im_show.save('result.jpg')
|
|||
| det | Enable detction when `ppocr.ocr` func exec | TRUE |
|
||||
| rec | Enable recognition when `ppocr.ocr` func exec | TRUE |
|
||||
| cls | Enable classification when `ppocr.ocr` func exec((Use use_angle_cls in command line mode to control whether to start classification in the forward direction) | FALSE |
|
||||
| show_log | Whether to print log in det and rec | FALSE |
|
||||
| show_log | Whether to print log| FALSE |
|
||||
| type | Perform ocr or table structuring, the value is selected in ['ocr','structure'] | ocr |
|
||||
| ocr_version | OCR Model version number, the current model support list is as follows: PP-OCRv2 support Chinese detection and recognition model, PP-OCR support Chinese detection, recognition and direction classifier, multilingual recognition model | PP-OCRv2 |
|
||||
| structure_version | table structure Model version number, the current model support list is as follows: STRUCTURE support english table structure model | STRUCTURE |
|
||||
|
|
|
@ -42,7 +42,7 @@ __all__ = [
|
|||
]
|
||||
|
||||
SUPPORT_DET_MODEL = ['DB']
|
||||
VERSION = '2.4'
|
||||
VERSION = '2.4.0.1'
|
||||
SUPPORT_REC_MODEL = ['CRNN']
|
||||
BASE_DIR = os.path.expanduser("~/.paddleocr/")
|
||||
|
||||
|
@ -338,7 +338,7 @@ class PaddleOCR(predict_system.TextSystem):
|
|||
params.rec_char_dict_path = str(
|
||||
Path(__file__).parent / rec_model_config['dict_path'])
|
||||
|
||||
print(params)
|
||||
logger.debug(params)
|
||||
# init det_model and rec_model
|
||||
super().__init__(params)
|
||||
|
||||
|
@ -438,7 +438,7 @@ class PPStructure(OCRSystem):
|
|||
params.table_char_dict_path = str(
|
||||
Path(__file__).parent / table_model_config['dict_path'])
|
||||
|
||||
print(params)
|
||||
logger.debug(params)
|
||||
super().__init__(params)
|
||||
|
||||
def __call__(self, img):
|
||||
|
@ -499,4 +499,4 @@ def main():
|
|||
|
||||
for item in result:
|
||||
item.pop('img')
|
||||
logger.info(item)
|
||||
logger.info(item)
|
Loading…
Reference in New Issue