You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
365 B
Python
18 lines
365 B
Python
# Ultralytics YOLOv5 🚀, AGPL-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)
|