image_http_client.py 1.5 KB
Newer Older
M
MRXLT 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# 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 requests
import base64
import json
G
guru4elephant 已提交
18
import time
19
import os
M
MRXLT 已提交
20 21 22
import sys

py_version = sys.version_info[0]
M
MRXLT 已提交
23

G
guru4elephant 已提交
24

M
MRXLT 已提交
25
def predict(image_path, server):
M
MRXLT 已提交
26 27 28 29
    if py_version == 2:
        image = base64.b64encode(open(image_path).read())
    else:
        image = base64.b64encode(open(image_path, "rb").read()).decode("utf-8")
M
MRXLT 已提交
30 31 32
    req = json.dumps({"image": image, "fetch": ["score"]})
    r = requests.post(
        server, data=req, headers={"Content-Type": "application/json"})
M
MRXLT 已提交
33
    try:
M
MRXLT 已提交
34
        print(r.json()["result"]["score"])
M
MRXLT 已提交
35 36
    except ValueError:
        print(r.text)
M
MRXLT 已提交
37 38 39
    return r


M
MRXLT 已提交
40
if __name__ == "__main__":
M
MRXLT 已提交
41 42
    server = "http://127.0.0.1:9393/image/prediction"
    image_list = os.listdir("./image_data/n01440764/")
G
guru4elephant 已提交
43
    start = time.time()
44
    for img in image_list:
M
MRXLT 已提交
45
        image_file = "./image_data/n01440764/" + img
46
        res = predict(image_file, server)
G
guru4elephant 已提交
47 48
    end = time.time()
    print(end - start)