mirror of
https://github.com/ultralytics/yolov5.git
synced 2025-06-03 14:49:29 +08:00
* Refactor code for speed and clarity * Auto-format by https://ultralytics.com/actions --------- Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com> Co-authored-by: UltralyticsAssistant <web@ultralytics.com>
18 lines
391 B
Python
18 lines
391 B
Python
# Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/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)
|