predict_system.py 8.2 KB
Newer Older
L
LDOUBLEV 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# 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.
14 15
import os
import sys
L
LDOUBLEV 已提交
16
import subprocess
W
WenmuZhou 已提交
17

18
__dir__ = os.path.dirname(os.path.abspath(__file__))
19
sys.path.append(__dir__)
littletomatodonkey's avatar
littletomatodonkey 已提交
20
sys.path.insert(0, os.path.abspath(os.path.join(__dir__, '../..')))
L
LDOUBLEV 已提交
21

L
LDOUBLEV 已提交
22 23
os.environ["FLAGS_allocator_strategy"] = 'auto_growth'

L
LDOUBLEV 已提交
24 25 26
import cv2
import copy
import numpy as np
littletomatodonkey's avatar
littletomatodonkey 已提交
27
import json
L
LDOUBLEV 已提交
28
import time
W
WenmuZhou 已提交
29
import logging
L
LDOUBLEV 已提交
30
from PIL import Image
W
WenmuZhou 已提交
31 32 33
import tools.infer.utility as utility
import tools.infer.predict_rec as predict_rec
import tools.infer.predict_det as predict_det
W
WenmuZhou 已提交
34
import tools.infer.predict_cls as predict_cls
35
from ppocr.utils.utility import get_image_file_list, check_and_read
W
WenmuZhou 已提交
36
from ppocr.utils.logging import get_logger
W
WenmuZhou 已提交
37
from tools.infer.utility import draw_ocr_box_txt, get_rotate_crop_image
W
WenmuZhou 已提交
38 39
logger = get_logger()

L
LDOUBLEV 已提交
40 41 42

class TextSystem(object):
    def __init__(self, args):
W
WenmuZhou 已提交
43 44 45
        if not args.show_log:
            logger.setLevel(logging.INFO)

L
LDOUBLEV 已提交
46 47
        self.text_detector = predict_det.TextDetector(args)
        self.text_recognizer = predict_rec.TextRecognizer(args)
W
WenmuZhou 已提交
48
        self.use_angle_cls = args.use_angle_cls
W
WenmuZhou 已提交
49
        self.drop_score = args.drop_score
W
WenmuZhou 已提交
50 51
        if self.use_angle_cls:
            self.text_classifier = predict_cls.TextClassifier(args)
L
LDOUBLEV 已提交
52

53 54 55 56 57
        self.args = args
        self.crop_image_res_index = 0

    def draw_crop_rec_res(self, output_dir, img_crop_list, rec_res):
        os.makedirs(output_dir, exist_ok=True)
L
LDOUBLEV 已提交
58 59
        bbox_num = len(img_crop_list)
        for bno in range(bbox_num):
60 61
            cv2.imwrite(
                os.path.join(output_dir,
T
tink2123 已提交
62
                             f"mg_crop_{bno+self.crop_image_res_index}.jpg"),
63 64 65
                img_crop_list[bno])
            logger.debug(f"{bno}, {rec_res[bno]}")
        self.crop_image_res_index += bbox_num
L
LDOUBLEV 已提交
66

67
    def __call__(self, img, cls=True):
文幕地方's avatar
文幕地方 已提交
68 69
        time_dict = {'det': 0, 'rec': 0, 'csl': 0, 'all': 0}
        start = time.time()
L
LDOUBLEV 已提交
70 71
        ori_im = img.copy()
        dt_boxes, elapse = self.text_detector(img)
文幕地方's avatar
文幕地方 已提交
72
        time_dict['det'] = elapse
W
WenmuZhou 已提交
73
        logger.debug("dt_boxes num : {}, elapse : {}".format(
W
WenmuZhou 已提交
74
            len(dt_boxes), elapse))
L
LDOUBLEV 已提交
75 76 77
        if dt_boxes is None:
            return None, None
        img_crop_list = []
78 79 80

        dt_boxes = sorted_boxes(dt_boxes)

L
LDOUBLEV 已提交
81 82
        for bno in range(len(dt_boxes)):
            tmp_box = copy.deepcopy(dt_boxes[bno])
W
WenmuZhou 已提交
83
            img_crop = get_rotate_crop_image(ori_im, tmp_box)
L
LDOUBLEV 已提交
84
            img_crop_list.append(img_crop)
85
        if self.use_angle_cls and cls:
W
WenmuZhou 已提交
86 87
            img_crop_list, angle_list, elapse = self.text_classifier(
                img_crop_list)
文幕地方's avatar
文幕地方 已提交
88
            time_dict['cls'] = elapse
W
WenmuZhou 已提交
89
            logger.debug("cls num  : {}, elapse : {}".format(
W
WenmuZhou 已提交
90 91
                len(img_crop_list), elapse))

L
LDOUBLEV 已提交
92
        rec_res, elapse = self.text_recognizer(img_crop_list)
文幕地方's avatar
文幕地方 已提交
93
        time_dict['rec'] = elapse
W
WenmuZhou 已提交
94
        logger.debug("rec_res num  : {}, elapse : {}".format(
W
WenmuZhou 已提交
95
            len(rec_res), elapse))
96 97 98
        if self.args.save_crop_res:
            self.draw_crop_rec_res(self.args.crop_res_save_dir, img_crop_list,
                                   rec_res)
W
WenmuZhou 已提交
99
        filter_boxes, filter_rec_res = [], []
littletomatodonkey's avatar
littletomatodonkey 已提交
100 101
        for box, rec_result in zip(dt_boxes, rec_res):
            text, score = rec_result
W
WenmuZhou 已提交
102 103
            if score >= self.drop_score:
                filter_boxes.append(box)
littletomatodonkey's avatar
littletomatodonkey 已提交
104
                filter_rec_res.append(rec_result)
文幕地方's avatar
文幕地方 已提交
105 106 107
        end = time.time()
        time_dict['all'] = end - start
        return filter_boxes, filter_rec_res, time_dict
L
LDOUBLEV 已提交
108 109


110 111 112 113
def sorted_boxes(dt_boxes):
    """
    Sort text boxes in order from top to bottom, left to right
    args:
T
tink2123 已提交
114
        dt_boxes(array):detected text boxes with shape [4, 2]
115 116 117 118
    return:
        sorted boxes(array) with shape [4, 2]
    """
    num_boxes = dt_boxes.shape[0]
119
    sorted_boxes = sorted(dt_boxes, key=lambda x: (x[0][1], x[0][0]))
120 121 122
    _boxes = list(sorted_boxes)

    for i in range(num_boxes - 1):
123 124 125 126 127 128 129 130
        for j in range(i, 0, -1):
            if abs(_boxes[j + 1][0][1] - _boxes[j][0][1]) < 10 and \
                    (_boxes[j + 1][0][0] < _boxes[j][0][0]):
                tmp = _boxes[j]
                _boxes[j] = _boxes[j + 1]
                _boxes[j + 1] = tmp
            else:
                break
131 132 133
    return _boxes


134
def main(args):
L
LDOUBLEV 已提交
135
    image_file_list = get_image_file_list(args.image_dir)
L
LDOUBLEV 已提交
136
    image_file_list = image_file_list[args.process_id::args.total_process_num]
L
LDOUBLEV 已提交
137
    text_sys = TextSystem(args)
L
LDOUBLEV 已提交
138
    is_visualize = True
W
WenmuZhou 已提交
139
    font_path = args.vis_font_path
W
WenmuZhou 已提交
140
    drop_score = args.drop_score
littletomatodonkey's avatar
littletomatodonkey 已提交
141 142 143
    draw_img_save_dir = args.draw_img_save_dir
    os.makedirs(draw_img_save_dir, exist_ok=True)
    save_results = []
D
Double_V 已提交
144

文幕地方's avatar
文幕地方 已提交
145 146 147 148 149
    logger.info(
        "In PP-OCRv3, rec_image_shape parameter defaults to '3, 48, 320', "
        "if you are using recognition model with PP-OCRv2 or an older version, please set --rec_image_shape='3,32,320"
    )

L
LDOUBLEV 已提交
150 151 152 153 154
    # warm up 10 times
    if args.warmup:
        img = np.random.uniform(0, 255, [640, 640, 3]).astype(np.uint8)
        for i in range(10):
            res = text_sys(img)
W
WenmuZhou 已提交
155

L
LDOUBLEV 已提交
156 157 158 159 160
    total_time = 0
    cpu_mem, gpu_mem, gpu_util = 0, 0, 0
    _st = time.time()
    count = 0
    for idx, image_file in enumerate(image_file_list):
L
LDOUBLEV 已提交
161

162
        img, flag, _ = check_and_read(image_file)
L
LDOUBLEV 已提交
163 164
        if not flag:
            img = cv2.imread(image_file)
L
LDOUBLEV 已提交
165
        if img is None:
166
            logger.debug("error in loading image:{}".format(image_file))
L
LDOUBLEV 已提交
167 168
            continue
        starttime = time.time()
文幕地方's avatar
文幕地方 已提交
169
        dt_boxes, rec_res, time_dict = text_sys(img)
L
LDOUBLEV 已提交
170
        elapse = time.time() - starttime
L
LDOUBLEV 已提交
171
        total_time += elapse
L
LDOUBLEV 已提交
172

173
        logger.debug(
L
LDOUBLEV 已提交
174
            str(idx) + "  Predict time of %s: %.3fs" % (image_file, elapse))
W
WenmuZhou 已提交
175
        for text, score in rec_res:
176
            logger.debug("{}, {:.3f}".format(text, score))
L
LDOUBLEV 已提交
177

littletomatodonkey's avatar
littletomatodonkey 已提交
178 179 180
        res = [{
            "transcription": rec_res[idx][0],
            "points": np.array(dt_boxes[idx]).astype(np.int32).tolist(),
littletomatodonkey's avatar
littletomatodonkey 已提交
181
        } for idx in range(len(dt_boxes))]
littletomatodonkey's avatar
littletomatodonkey 已提交
182 183 184 185
        save_pred = os.path.basename(image_file) + "\t" + json.dumps(
            res, ensure_ascii=False) + "\n"
        save_results.append(save_pred)

L
LDOUBLEV 已提交
186 187 188 189 190 191
        if is_visualize:
            image = Image.fromarray(cv2.cvtColor(img, cv2.COLOR_BGR2RGB))
            boxes = dt_boxes
            txts = [rec_res[i][0] for i in range(len(rec_res))]
            scores = [rec_res[i][1] for i in range(len(rec_res))]

W
WenmuZhou 已提交
192 193 194 195 196 197 198
            draw_img = draw_ocr_box_txt(
                image,
                boxes,
                txts,
                scores,
                drop_score=drop_score,
                font_path=font_path)
L
LDOUBLEV 已提交
199 200
            if flag:
                image_file = image_file[:-3] + "png"
L
LDOUBLEV 已提交
201
            cv2.imwrite(
202
                os.path.join(draw_img_save_dir, os.path.basename(image_file)),
D
dyning 已提交
203
                draw_img[:, :, ::-1])
204 205
            logger.debug("The visualized image saved in {}".format(
                os.path.join(draw_img_save_dir, os.path.basename(image_file))))
206

L
LDOUBLEV 已提交
207
    logger.info("The predict total time is {}".format(time.time() - _st))
L
LDOUBLEV 已提交
208 209 210
    if args.benchmark:
        text_sys.text_detector.autolog.report()
        text_sys.text_recognizer.autolog.report()
L
LDOUBLEV 已提交
211

文幕地方's avatar
文幕地方 已提交
212 213 214 215
    with open(
            os.path.join(draw_img_save_dir, "system_results.txt"),
            'w',
            encoding='utf-8') as f:
littletomatodonkey's avatar
littletomatodonkey 已提交
216 217
        f.writelines(save_results)

L
LDOUBLEV 已提交
218

L
LDOUBLEV 已提交
219
if __name__ == "__main__":
L
LDOUBLEV 已提交
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
    args = utility.parse_args()
    if args.use_mp:
        p_list = []
        total_process_num = args.total_process_num
        for process_id in range(total_process_num):
            cmd = [sys.executable, "-u"] + sys.argv + [
                "--process_id={}".format(process_id),
                "--use_mp={}".format(False)
            ]
            p = subprocess.Popen(cmd, stdout=sys.stdout, stderr=sys.stdout)
            p_list.append(p)
        for p in p_list:
            p.wait()
    else:
        main(args)