PaddleClas/deploy/paddleserving/pipeline_http_client.py

21 lines
502 B
Python
Raw Normal View History

import requests
import json
import base64
import os
2021-11-29 17:15:58 +08:00
def cv2_to_base64(image):
return base64.b64encode(image).decode('utf8')
2021-11-29 17:15:58 +08:00
if __name__ == "__main__":
url = "http://127.0.0.1:18080/imagenet/prediction"
with open(os.path.join(".", "daisy.jpg"), 'rb') as file:
image_data1 = file.read()
image = cv2_to_base64(image_data1)
2021-11-29 17:15:58 +08:00
data = {"key": ["image"], "value": [image]}
2021-11-29 17:15:58 +08:00
for i in range(1):
r = requests.post(url=url, data=json.dumps(data))
print(r.json())