OMEGAMAX10 / YOLOv8-Object-Detection-Tracking-Image-Segmentation-Pose-Estimation

YOLOv8 object detection, tracking, image segmentation and pose estimation app using Ultralytics API (for detection, segmentation and pose estimation), as well as DeepSORT (for tracking) in Python. This app uses an UI made with streamlit and it can be deployed with Docker.
Apache License 2.0
66 stars 13 forks source link

Interact via REST API #4

Closed pascalchristian closed 7 months ago

pascalchristian commented 7 months ago

Any ways to do this? Seems that the json result is not exposed via http?

OMEGAMAX10 commented 7 months ago

Hello! Unfortunately, my application doesn't have a REST API, since it was intended as a web interactive application rather than an API. Furthermore, I don't believe that my app should be an API since it will be very difficult to transmit the detected object masks back to the client (that's because the masks are basically a matrix with the same width and height of the original image, making it too large to be transported).