From feb4224d2c6461c9d755e3453f287b70b21e248a Mon Sep 17 00:00:00 2001 From: WenmuZhou <572459439@qq.com> Date: Mon, 10 Oct 2022 08:32:30 +0000 Subject: [PATCH] update table_recognition.md --- doc/doc_ch/table_recognition.md | 2 +- doc/doc_en/table_recognition_en.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/doc_ch/table_recognition.md b/doc/doc_ch/table_recognition.md index e0761494..156ba80e 100644 --- a/doc/doc_ch/table_recognition.md +++ b/doc/doc_ch/table_recognition.md @@ -41,7 +41,7 @@ img_label 'imgid': 0, # 图像的index 'html': { 'structure': {'tokens': ['', '', '', ...]}, # 表格的HTML字符串 - 'cell': [ + 'cells': [ { 'tokens': ['P', 'a', 'd', 'd', 'l', 'e', 'P', 'a', 'd', 'd', 'l', 'e'], # 表格中的单个文本 'bbox': [x0, y0, x1, y1] # 表格中的单个文本的坐标 diff --git a/doc/doc_en/table_recognition_en.md b/doc/doc_en/table_recognition_en.md index aacf9ca6..cff2933d 100644 --- a/doc/doc_en/table_recognition_en.md +++ b/doc/doc_en/table_recognition_en.md @@ -41,7 +41,7 @@ The json format of each line is: 'imgid': 0,# index of image 'html': { 'structure': {'tokens': ['', '', '', ...]}, # HTML string of the table - 'cell': [ + 'cells': [ { 'tokens': ['P', 'a', 'd', 'd', 'l', 'e', 'P', 'a', 'd', 'd', 'l', 'e'], # text in cell 'bbox': [x0, y0, x1, y1] # bbox of cell -- GitLab