utility.py 3.9 KB
Newer Older
W
WenmuZhou 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

文幕地方's avatar
文幕地方 已提交
15
import ast
W
WenmuZhou 已提交
16 17
from PIL import Image
import numpy as np
18
from tools.infer.utility import draw_ocr_box_txt, str2bool, init_args as infer_args
W
WenmuZhou 已提交
19 20 21 22 23 24


def init_args():
    parser = infer_args()

    # params for output
25
    parser.add_argument("--output", type=str, default='./output')
W
WenmuZhou 已提交
26
    # params for table structure
W
WenmuZhou 已提交
27
    parser.add_argument("--table_max_len", type=int, default=488)
文幕地方's avatar
文幕地方 已提交
28
    parser.add_argument("--table_algorithm", type=str, default='TableAttn')
W
WenmuZhou 已提交
29
    parser.add_argument("--table_model_dir", type=str)
文幕地方's avatar
文幕地方 已提交
30
    parser.add_argument(
文幕地方's avatar
文幕地方 已提交
31
        "--merge_no_span_structure", type=str2bool, default=True)
32 33 34 35
    parser.add_argument(
        "--table_char_dict_path",
        type=str,
        default="../ppocr/utils/dict/table_structure_dict.txt")
36
    # params for layout
A
an1018 已提交
37
    parser.add_argument("--layout_model_dir", type=str)
38
    parser.add_argument(
A
an1018 已提交
39
        "--layout_dict_path",
40
        type=str,
U
user1018 已提交
41
        default="../ppocr/utils/dict/layout_dict/layout_pubalynet_dict.txt")
文幕地方's avatar
文幕地方 已提交
42
    parser.add_argument(
A
an1018 已提交
43
        "--layout_score_threshold",
A
an1018 已提交
44 45 46 47
        type=float,
        default=0.5,
        help="Threshold of score.")
    parser.add_argument(
文幕地方's avatar
文幕地方 已提交
48 49 50 51
        "--layout_nms_threshold",
        type=float,
        default=0.5,
        help="Threshold of nms.")
52 53 54 55 56 57 58
    # params for vqa
    parser.add_argument("--vqa_algorithm", type=str, default='LayoutXLM')
    parser.add_argument("--ser_model_dir", type=str)
    parser.add_argument(
        "--ser_dict_path",
        type=str,
        default="../train_data/XFUND/class_list_xfun.txt")
littletomatodonkey's avatar
littletomatodonkey 已提交
59 60
    # need to be None or tb-yx
    parser.add_argument("--ocr_order_method", type=str, default=None)
61
    # params for inference
62 63 64 65 66
    parser.add_argument(
        "--mode",
        type=str,
        default='structure',
        help='structure and vqa is supported')
67 68 69 70 71
    parser.add_argument(
        "--image_orientation",
        type=bool,
        default=False,
        help='Whether to enable image orientation recognition')
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
    parser.add_argument(
        "--layout",
        type=str2bool,
        default=True,
        help='Whether to enable layout analysis')
    parser.add_argument(
        "--table",
        type=str2bool,
        default=True,
        help='In the forward, whether the table area uses table recognition')
    parser.add_argument(
        "--ocr",
        type=str2bool,
        default=True,
        help='In the forward, whether the non-table area is recognition by ocr')
A
an1018 已提交
87 88 89 90
    parser.add_argument(
        "--recovery",
        type=bool,
        default=False,
文幕地方's avatar
文幕地方 已提交
91
        help='Whether to enable layout of recovery')
U
user1018 已提交
92 93 94 95 96
    parser.add_argument(
        "--save_pdf",
        type=bool,
        default=False,
        help='Whether to save pdf file')
W
WenmuZhou 已提交
97 98 99 100 101 102 103 104
    return parser


def parse_args():
    parser = init_args()
    return parser.parse_args()


105
def draw_structure_result(image, result, font_path):
W
WenmuZhou 已提交
106 107 108 109
    if isinstance(image, np.ndarray):
        image = Image.fromarray(image)
    boxes, txts, scores = [], [], []
    for region in result:
文幕地方's avatar
文幕地方 已提交
110
        if region['type'] == 'table':
W
WenmuZhou 已提交
111 112
            pass
        else:
文幕地方's avatar
文幕地方 已提交
113 114 115 116
            for text_result in region['res']:
                boxes.append(np.array(text_result['text_region']))
                txts.append(text_result['text'])
                scores.append(text_result['confidence'])
117 118 119
    im_show = draw_ocr_box_txt(
        image, boxes, txts, scores, font_path=font_path, drop_score=0)
    return im_show