predict_det.py 10.1 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.
L
LDOUBLEV 已提交
14 15
import os
import sys
W
WenmuZhou 已提交
16

17
__dir__ = os.path.dirname(os.path.abspath(__file__))
L
LDOUBLEV 已提交
18
sys.path.append(__dir__)
19
sys.path.append(os.path.abspath(os.path.join(__dir__, '../..')))
L
LDOUBLEV 已提交
20

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

23 24 25 26 27
import cv2
import numpy as np
import time
import sys

L
LDOUBLEV 已提交
28
import tools.infer.utility as utility
W
WenmuZhou 已提交
29
from ppocr.utils.logging import get_logger
L
LDOUBLEV 已提交
30
from ppocr.utils.utility import get_image_file_list, check_and_read_gif
W
WenmuZhou 已提交
31 32
from ppocr.data import create_operators, transform
from ppocr.postprocess import build_post_process
L
LDOUBLEV 已提交
33

W
WenmuZhou 已提交
34 35
logger = get_logger()

L
LDOUBLEV 已提交
36 37 38

class TextDetector(object):
    def __init__(self, args):
L
LDOUBLEV 已提交
39
        self.args = args
L
LDOUBLEV 已提交
40
        self.det_algorithm = args.det_algorithm
M
MissPenguin 已提交
41
        pre_process_list = [{
42 43
            'DetResizeForTest': {
                'limit_side_len': args.det_limit_side_len,
W
WenmuZhou 已提交
44
                'limit_type': args.det_limit_type,
45
            }
M
MissPenguin 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58 59
        }, {
            'NormalizeImage': {
                'std': [0.229, 0.224, 0.225],
                'mean': [0.485, 0.456, 0.406],
                'scale': '1./255.',
                'order': 'hwc'
            }
        }, {
            'ToCHWImage': None
        }, {
            'KeepKeys': {
                'keep_keys': ['image', 'shape']
            }
        }]
L
LDOUBLEV 已提交
60 61
        postprocess_params = {}
        if self.det_algorithm == "DB":
W
WenmuZhou 已提交
62
            postprocess_params['name'] = 'DBPostProcess'
L
LDOUBLEV 已提交
63 64 65
            postprocess_params["thresh"] = args.det_db_thresh
            postprocess_params["box_thresh"] = args.det_db_box_thresh
            postprocess_params["max_candidates"] = 1000
66
            postprocess_params["unclip_ratio"] = args.det_db_unclip_ratio
L
LDOUBLEV 已提交
67
            postprocess_params["use_dilation"] = args.use_dilation
littletomatodonkey's avatar
littletomatodonkey 已提交
68
            postprocess_params["score_mode"] = args.det_db_score_mode
M
MissPenguin 已提交
69
        elif self.det_algorithm == "EAST":
W
WenmuZhou 已提交
70
            postprocess_params['name'] = 'EASTPostProcess'
M
MissPenguin 已提交
71 72 73 74
            postprocess_params["score_thresh"] = args.det_east_score_thresh
            postprocess_params["cover_thresh"] = args.det_east_cover_thresh
            postprocess_params["nms_thresh"] = args.det_east_nms_thresh
        elif self.det_algorithm == "SAST":
M
MissPenguin 已提交
75
            pre_process_list[0] = {
W
WenmuZhou 已提交
76 77 78
                'DetResizeForTest': {
                    'resize_long': args.det_limit_side_len
                }
M
MissPenguin 已提交
79
            }
W
WenmuZhou 已提交
80
            postprocess_params['name'] = 'SASTPostProcess'
M
MissPenguin 已提交
81 82 83 84 85 86 87 88 89 90 91
            postprocess_params["score_thresh"] = args.det_sast_score_thresh
            postprocess_params["nms_thresh"] = args.det_sast_nms_thresh
            self.det_sast_polygon = args.det_sast_polygon
            if self.det_sast_polygon:
                postprocess_params["sample_pts_num"] = 6
                postprocess_params["expand_scale"] = 1.2
                postprocess_params["shrink_ratio_of_width"] = 0.2
            else:
                postprocess_params["sample_pts_num"] = 2
                postprocess_params["expand_scale"] = 1.0
                postprocess_params["shrink_ratio_of_width"] = 0.3
L
LDOUBLEV 已提交
92 93 94 95
        else:
            logger.info("unknown det_algorithm:{}".format(self.det_algorithm))
            sys.exit(0)

W
WenmuZhou 已提交
96 97
        self.preprocess_op = create_operators(pre_process_list)
        self.postprocess_op = build_post_process(postprocess_params)
L
LDOUBLEV 已提交
98 99 100
        self.predictor, self.input_tensor, self.output_tensors, self.config = utility.create_predictor(
            args, 'det', logger)

D
Double_V 已提交
101
        if args.benchmark:
D
Double_V 已提交
102
            import auto_log
D
Double_V 已提交
103
            pid = os.getpid()
L
LDOUBLEV 已提交
104
            gpu_id = self.get_infer_gpuid()
D
Double_V 已提交
105 106 107 108 109
            self.autolog = auto_log.AutoLogger(
                model_name="det",
                model_precision=args.precision,
                batch_size=1,
                data_shape="dynamic",
L
LDOUBLEV 已提交
110
                save_path=None,
D
Double_V 已提交
111 112 113
                inference_config=self.config,
                pids=pid,
                process_name=None,
L
LDOUBLEV 已提交
114
                gpu_ids=gpu_id,
D
Double_V 已提交
115 116 117
                time_keys=[
                    'preprocess_time', 'inference_time', 'postprocess_time'
                ],
118
                warmup=2,
L
LDOUBLEV 已提交
119
                logger=logger)
L
LDOUBLEV 已提交
120

L
LDOUBLEV 已提交
121 122 123 124 125 126 127 128 129 130 131 132 133
    def get_infer_gpuid(self):
        cmd = "nvidia-smi"
        res = os.popen(cmd).readlines()
        if len(res) == 0:
            return None
        cmd = "env | grep CUDA_VISIBLE_DEVICES"
        env_cuda = os.popen(cmd).readlines()
        if len(env_cuda) == 0:
            return 0
        else:
            gpu_id = env_cuda[0].strip().split("=")[1]
            return int(gpu_id[0])

L
LDOUBLEV 已提交
134
    def order_points_clockwise(self, pts):
135 136
        """
        reference from: https://github.com/jrosebr1/imutils/blob/master/imutils/perspective.py
L
LDOUBLEV 已提交
137
        # sort the points based on their x-coordinates
138
        """
L
LDOUBLEV 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
        xSorted = pts[np.argsort(pts[:, 0]), :]

        # grab the left-most and right-most points from the sorted
        # x-roodinate points
        leftMost = xSorted[:2, :]
        rightMost = xSorted[2:, :]

        # now, sort the left-most coordinates according to their
        # y-coordinates so we can grab the top-left and bottom-left
        # points, respectively
        leftMost = leftMost[np.argsort(leftMost[:, 1]), :]
        (tl, bl) = leftMost

        rightMost = rightMost[np.argsort(rightMost[:, 1]), :]
        (tr, br) = rightMost

        rect = np.array([tl, tr, br, bl], dtype="float32")
        return rect

D
dyning 已提交
158
    def clip_det_res(self, points, img_height, img_width):
159
        for pno in range(points.shape[0]):
D
dyning 已提交
160 161
            points[pno, 0] = int(min(max(points[pno, 0], 0), img_width - 1))
            points[pno, 1] = int(min(max(points[pno, 1], 0), img_height - 1))
L
LDOUBLEV 已提交
162 163 164 165 166 167 168
        return points

    def filter_tag_det_res(self, dt_boxes, image_shape):
        img_height, img_width = image_shape[0:2]
        dt_boxes_new = []
        for box in dt_boxes:
            box = self.order_points_clockwise(box)
D
dyning 已提交
169
            box = self.clip_det_res(box, img_height, img_width)
L
LDOUBLEV 已提交
170 171
            rect_width = int(np.linalg.norm(box[0] - box[1]))
            rect_height = int(np.linalg.norm(box[0] - box[3]))
M
MissPenguin 已提交
172
            if rect_width <= 3 or rect_height <= 3:
L
LDOUBLEV 已提交
173 174 175 176 177
                continue
            dt_boxes_new.append(box)
        dt_boxes = np.array(dt_boxes_new)
        return dt_boxes

178 179 180 181 182 183 184 185
    def filter_tag_det_res_only_clip(self, dt_boxes, image_shape):
        img_height, img_width = image_shape[0:2]
        dt_boxes_new = []
        for box in dt_boxes:
            box = self.clip_det_res(box, img_height, img_width)
            dt_boxes_new.append(box)
        dt_boxes = np.array(dt_boxes_new)
        return dt_boxes
186

L
LDOUBLEV 已提交
187 188
    def __call__(self, img):
        ori_im = img.copy()
W
WenmuZhou 已提交
189
        data = {'image': img}
L
LDOUBLEV 已提交
190 191

        st = time.time()
L
LDOUBLEV 已提交
192

littletomatodonkey's avatar
littletomatodonkey 已提交
193
        if self.args.benchmark:
D
Double_V 已提交
194
            self.autolog.times.start()
L
LDOUBLEV 已提交
195

W
WenmuZhou 已提交
196 197 198
        data = transform(data, self.preprocess_op)
        img, shape_list = data
        if img is None:
L
LDOUBLEV 已提交
199
            return None, 0
W
WenmuZhou 已提交
200 201
        img = np.expand_dims(img, axis=0)
        shape_list = np.expand_dims(shape_list, axis=0)
202
        img = img.copy()
L
LDOUBLEV 已提交
203

littletomatodonkey's avatar
littletomatodonkey 已提交
204
        if self.args.benchmark:
D
Double_V 已提交
205
            self.autolog.times.stamp()
L
LDOUBLEV 已提交
206

W
WenmuZhou 已提交
207 208
        self.input_tensor.copy_from_cpu(img)
        self.predictor.run()
209 210 211 212
        outputs = []
        for output_tensor in self.output_tensors:
            output = output_tensor.copy_to_cpu()
            outputs.append(output)
littletomatodonkey's avatar
littletomatodonkey 已提交
213
        if self.args.benchmark:
D
Double_V 已提交
214
            self.autolog.times.stamp()
L
LDOUBLEV 已提交
215

M
MissPenguin 已提交
216 217 218 219 220 221 222 223 224
        preds = {}
        if self.det_algorithm == "EAST":
            preds['f_geo'] = outputs[0]
            preds['f_score'] = outputs[1]
        elif self.det_algorithm == 'SAST':
            preds['f_border'] = outputs[0]
            preds['f_score'] = outputs[1]
            preds['f_tco'] = outputs[2]
            preds['f_tvo'] = outputs[3]
W
WenmuZhou 已提交
225
        elif self.det_algorithm == 'DB':
W
WenmuZhou 已提交
226
            preds['maps'] = outputs[0]
W
WenmuZhou 已提交
227 228
        else:
            raise NotImplementedError
L
LDOUBLEV 已提交
229

L
LDOUBLEV 已提交
230
        #self.predictor.try_shrink_memory()
W
WenmuZhou 已提交
231 232
        post_result = self.postprocess_op(preds, shape_list)
        dt_boxes = post_result[0]['points']
M
MissPenguin 已提交
233 234 235 236
        if self.det_algorithm == "SAST" and self.det_sast_polygon:
            dt_boxes = self.filter_tag_det_res_only_clip(dt_boxes, ori_im.shape)
        else:
            dt_boxes = self.filter_tag_det_res(dt_boxes, ori_im.shape)
L
LDOUBLEV 已提交
237

littletomatodonkey's avatar
littletomatodonkey 已提交
238
        if self.args.benchmark:
D
Double_V 已提交
239
            self.autolog.times.end(stamp=True)
L
LDOUBLEV 已提交
240 241
        et = time.time()
        return dt_boxes, et - st
L
LDOUBLEV 已提交
242 243 244 245


if __name__ == "__main__":
    args = utility.parse_args()
L
LDOUBLEV 已提交
246
    image_file_list = get_image_file_list(args.image_dir)
L
LDOUBLEV 已提交
247 248 249
    text_detector = TextDetector(args)
    count = 0
    total_time = 0
littletomatodonkey's avatar
littletomatodonkey 已提交
250
    draw_img_save = "./inference_results"
L
LDOUBLEV 已提交
251

L
LDOUBLEV 已提交
252 253
    if args.warmup:
        img = np.random.uniform(0, 255, [640, 640, 3]).astype(np.uint8)
254
        for i in range(2):
L
LDOUBLEV 已提交
255 256
            res = text_detector(img)

littletomatodonkey's avatar
littletomatodonkey 已提交
257 258
    if not os.path.exists(draw_img_save):
        os.makedirs(draw_img_save)
L
LDOUBLEV 已提交
259
    for image_file in image_file_list:
L
LDOUBLEV 已提交
260 261 262
        img, flag = check_and_read_gif(image_file)
        if not flag:
            img = cv2.imread(image_file)
L
LDOUBLEV 已提交
263 264 265
        if img is None:
            logger.info("error in loading image:{}".format(image_file))
            continue
L
LDOUBLEV 已提交
266 267 268
        st = time.time()
        dt_boxes, _ = text_detector(img)
        elapse = time.time() - st
L
LDOUBLEV 已提交
269 270 271
        if count > 0:
            total_time += elapse
        count += 1
L
LDOUBLEV 已提交
272

W
WenmuZhou 已提交
273
        logger.info("Predict time of {}: {}".format(image_file, elapse))
D
dyning 已提交
274
        src_im = utility.draw_text_det_res(dt_boxes, image_file)
W
WenmuZhou 已提交
275
        img_name_pure = os.path.split(image_file)[-1]
W
WenmuZhou 已提交
276 277
        img_path = os.path.join(draw_img_save,
                                "det_res_{}".format(img_name_pure))
L
LDOUBLEV 已提交
278
        cv2.imwrite(img_path, src_im)
W
WenmuZhou 已提交
279
        logger.info("The visualized image saved in {}".format(img_path))
L
LDOUBLEV 已提交
280

D
Double_V 已提交
281 282
    if args.benchmark:
        text_detector.autolog.report()