test_hubserving.py 4.0 KB
Newer Older
D
dyning 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# 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.
import os
import sys
__dir__ = os.path.dirname(os.path.abspath(__file__))
sys.path.append(__dir__)
sys.path.append(os.path.abspath(os.path.join(__dir__, '..')))

M
MissPenguin 已提交
20 21 22
from ppocr.utils.logging import get_logger
logger = get_logger()

D
dyning 已提交
23 24 25 26 27 28
import cv2
import numpy as np
import time
from PIL import Image
from ppocr.utils.utility import get_image_file_list
from tools.infer.utility import draw_ocr, draw_boxes
D
dyning 已提交
29 30 31 32

import requests
import json
import base64
D
dyning 已提交
33

D
dyning 已提交
34 35 36 37

def cv2_to_base64(image):
    return base64.b64encode(image).decode('utf8')

D
dyning 已提交
38 39 40 41 42 43 44

def draw_server_result(image_file, res):
    img = cv2.imread(image_file)
    image = Image.fromarray(cv2.cvtColor(img, cv2.COLOR_BGR2RGB))
    if len(res) == 0:
        return np.array(image)
    keys = res[0].keys()
littletomatodonkey's avatar
littletomatodonkey 已提交
45 46
    if 'text_region' not in keys:  # for ocr_rec, draw function is invalid 
        logger.info("draw function is invalid for ocr_rec!")
D
dyning 已提交
47
        return None
littletomatodonkey's avatar
littletomatodonkey 已提交
48 49
    elif 'text' not in keys:  # for ocr_det
        logger.info("draw text boxes only!")
D
dyning 已提交
50 51 52 53 54 55
        boxes = []
        for dno in range(len(res)):
            boxes.append(res[dno]['text_region'])
        boxes = np.array(boxes)
        draw_img = draw_boxes(image, boxes)
        return draw_img
littletomatodonkey's avatar
littletomatodonkey 已提交
56 57
    else:  # for ocr_system
        logger.info("draw boxes and texts!")
D
dyning 已提交
58 59 60 61 62 63 64 65 66
        boxes = []
        texts = []
        scores = []
        for dno in range(len(res)):
            boxes.append(res[dno]['text_region'])
            texts.append(res[dno]['text'])
            scores.append(res[dno]['confidence'])
        boxes = np.array(boxes)
        scores = np.array(scores)
littletomatodonkey's avatar
littletomatodonkey 已提交
67 68
        draw_img = draw_ocr(
            image, boxes, texts, scores, draw_txt=True, drop_score=0.5)
D
dyning 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
        return draw_img


def main(url, image_path):
    image_file_list = get_image_file_list(image_path)
    is_visualize = False
    headers = {"Content-type": "application/json"}
    cnt = 0
    total_time = 0
    for image_file in image_file_list:
        img = open(image_file, 'rb').read()
        if img is None:
            logger.info("error in loading image:{}".format(image_file))
            continue

        # 发送HTTP请求
        starttime = time.time()
littletomatodonkey's avatar
littletomatodonkey 已提交
86
        data = {'images': [cv2_to_base64(img)]}
D
dyning 已提交
87 88 89
        r = requests.post(url=url, headers=headers, data=json.dumps(data))
        elapse = time.time() - starttime
        total_time += elapse
littletomatodonkey's avatar
littletomatodonkey 已提交
90
        logger.info("Predict time of %s: %.3fs" % (image_file, elapse))
D
dyning 已提交
91
        res = r.json()["results"][0]
littletomatodonkey's avatar
littletomatodonkey 已提交
92
        logger.info(res)
D
dyning 已提交
93 94 95 96 97 98 99 100 101 102

        if is_visualize:
            draw_img = draw_server_result(image_file, res)
            if draw_img is not None:
                draw_img_save = "./server_results/"
                if not os.path.exists(draw_img_save):
                    os.makedirs(draw_img_save)
                cv2.imwrite(
                    os.path.join(draw_img_save, os.path.basename(image_file)),
                    draw_img[:, :, ::-1])
littletomatodonkey's avatar
littletomatodonkey 已提交
103
                logger.info("The visualized image saved in {}".format(
D
dyning 已提交
104 105 106
                    os.path.join(draw_img_save, os.path.basename(image_file))))
        cnt += 1
        if cnt % 100 == 0:
littletomatodonkey's avatar
littletomatodonkey 已提交
107 108
            logger.info("{} processed".format(cnt))
    logger.info("avg time cost: {}".format(float(total_time) / cnt))
D
dyning 已提交
109

littletomatodonkey's avatar
littletomatodonkey 已提交
110 111

if __name__ == '__main__':
D
dyning 已提交
112
    if len(sys.argv) != 3:
littletomatodonkey's avatar
littletomatodonkey 已提交
113
        logger.info("Usage: %s server_url image_path" % sys.argv[0])
D
dyning 已提交
114 115 116
    else:
        server_url = sys.argv[1]
        image_path = sys.argv[2]
M
MissPenguin 已提交
117
        main(server_url, image_path)