* YOLOv3 updates * Add missing files * Reformat * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Reformat * Reformat * Reformat * Reformat * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
20 lines
368 B
Python
20 lines
368 B
Python
# YOLOv3 🚀 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)
|