fix det res dtype in table recognition ()

* add finetune en doc & test=document_fix

* fix dead link & test=document_fix

* fix dead link & test=document_fix

* update check img

* fix det res dtype
pull/8675/head
andyj 2022-12-14 11:20:28 +08:00 committed by GitHub
parent 5cac747656
commit 2d1f9414d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
ppstructure/table

View File

@ -93,7 +93,7 @@ class TableSystem(object):
time_dict['rec'] = rec_elapse
if return_ocr_result_in_table:
result['boxes'] = dt_boxes #[x.tolist() for x in dt_boxes]
result['boxes'] = [x.tolist() for x in dt_boxes]
result['rec_res'] = rec_res
tic = time.time()