Yolov5 / utils /flask_rest_api /example_request.py
shriarul5273's picture
initial commit
3959175
raw
history blame contribute delete
368 Bytes
# YOLOv5 πŸš€ by Ultralytics, GPL-3.0 license
"""
Perform test request
"""
import pprint
import requests
DETECTION_URL = "http://localhost:5000/v1/object-detection/yolov5s"
IMAGE = "zidane.jpg"
# Read image
with open(IMAGE, "rb") as f:
image_data = f.read()
response = requests.post(DETECTION_URL, files={"image": image_data}).json()
pprint.pprint(response)