fix det res dtype in table recognition (#8616)

* 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
This commit is contained in:
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

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()