
YOLO-World-ONNX is a Python package that enables running inference on YOLO-WORLD open-vocabulary object detection models using ONNX runtime. It provides a user-friendly interface for performing object detection on images or videos. The package leverages ONNX models to deliver fast inference time, making it suitable for a wide range of object detection applications.
Installation
You can install YOLO-World-ONNX using pip:
pip install yolo-world-onnx
Usage
Inference
Here's an example of how to perform inference using YOLO-World-ONNX:
import cv2 as cv
from yolo_world_onnx import YOLOWORLD
model_path = "path/to/your/model.onnx"
model = YOLOWORLD(model_path, device="0")
class_names = ["person", "car", "dog", "cat"]
model.set_classes(class_names)
names = model.names
image = cv.imread("path/to/your/image.jpg")
boxes, scores, class_ids = model(image, conf=0.35, imgsz=640, iou=0.7)
for box, score, class_id in zip(boxes, scores, class_ids):
x, y, w, h = box
x1, y1 = int(x - w / 2), int(y - h / 2)
x2, y2 = int(x + w / 2), int(y + h / 2)
class_name = names[class_id]
print(f"Detected {class_name} with confidence {score:.2f} at coordinates (x1={x1}, y1={y1}, x2={x2}, y2={y2})")
The model
function performs object detection on the input image and returns three values:
-
boxes
: A list of bounding box coordinates for each detected object. Each box is represented as a tuple of four values (x, y, w, h)
, where:
x
and y
are the coordinates of the center of the bounding box.
w
and h
are the width and height of the bounding box.
- The coordinates are in the original image size.
-
scores
: A list of confidence scores for each detected object. The confidence score represents the model's confidence in the detection, ranging from 0 to 1.
-
class_ids
: A list of class indices for each detected object. The class index corresponds to the index of the class name in the names
list.
The names
list contains the class names that were set using the set_classes
method. It is used to map the class indices to their corresponding class names.
In the example code, the results are processed by iterating over the boxes
, scores
, and class_ids
lists simultaneously using zip
. For each detected object:
- The bounding box coordinates
(x, y, w, h)
are extracted from the box
tuple.
- The top-left and bottom-right coordinates of the bounding box are calculated using
(x1, y1)
and (x2, y2)
, respectively.
- The class name is obtained by indexing the
names
list with the class_id
.
- The class name, confidence score, and bounding box coordinates are printed.
You can customize the processing of the results based on your specific requirements, such as drawing the bounding boxes on the image, filtering the detections based on confidence scores, or performing further analysis on the detected objects.
Image Inference
Here's an example of performing inference on an image and drawing the results:
import cv2 as cv
from yolo_world_onnx import YOLOWORLD
model_path = "path/to/your/model.onnx"
model = YOLOWORLD(model_path, device="0")
class_names = ["person", "car", "dog", "cat"]
model.set_classes(class_names)
names = model.names
image = cv.imread("path/to/your/image.jpg")
boxes, scores, class_ids = model(image, conf=0.35, imgsz=640, iou=0.7)
for box, score, class_id in zip(boxes, scores, class_ids):
x, y, w, h = box
x1, y1 = int(x - w / 2), int(y - h / 2)
x2, y2 = int(x + w / 2), int(y + h / 2)
cv.rectangle(image, (x1, y1), (x2, y2), (0, 255, 0), 2)
class_name = names[class_id]
cv.putText(image, f"{class_name}: {score:.2f}", (x1, y1 - 10), cv.FONT_HERSHEY_SIMPLEX, 0.9, (0, 255, 0), 2)
cv.imshow("Object Detection", image)
cv.waitKey(0)
cv.destroyAllWindows()
Video Inference
Here's an example of performing inference on a video and drawing the results:
import cv2 as cv
from yolo_world_onnx import YOLOWORLD
model_path = "path/to/your/model.onnx"
model = YOLOWORLD(model_path, device="0")
class_names = ["person", "car", "dog", "cat"]
model.set_classes(class_names)
names = model.names
video_path = "path/to/your/video.mp4"
cap = cv.VideoCapture(video_path)
while True:
ret, frame = cap.read()
if not ret:
break
boxes, scores, class_ids = model(frame, conf=0.35, imgsz=640, iou=0.7)
for box, score, class_id in zip(boxes, scores, class_ids):
x, y, w, h = box
x1, y1 = int(x - w / 2), int(y - h / 2)
x2, y2 = int(x + w / 2), int(y + h / 2)
cv.rectangle(frame, (x1, y1), (x2, y2), (0, 255, 0), 2)
class_name = names[class_id]
cv.putText(frame, f"{class_name}: {score:.2f}", (x1, y1 - 10), cv.FONT_HERSHEY_SIMPLEX, 0.9, (0, 255, 0), 2)
cv.imshow("Object Detection", frame)
if cv.waitKey(1) & 0xFF == ord('q'):
break
cap.release()
cv.destroyAllWindows()
ONNX Models
Custom Models
YOLO-World-ONNX supports custom ONNX models that are exported in the same format as the models provided in this repository. The code is designed to work dynamically with models of any number of classes. Even if the model is exported on 100 classes and the user specifies only 3 classes to be detected in the run, YOLO-World-ONNX will detect those 3 classes accordingly.
If you want to use a custom model with a different resolution or detect more classes, you can follow the guide on exporting custom models in the ONNX-YOLO-World-Open-Vocabulary-Object-Detection repository.
Credits
The original source code for this package is based on the work by Ibai Gorordo in the ONNX-YOLO-World-Open-Vocabulary-Object-Detection repository.
Image reference is Here
License
This project is licensed under the MIT License. See the LICENSE file for more information.