Detections
Detections unified data structures for representing detection results from various computer vision frameworks, including bounding boxes, masks, keypoints, and tracking information. Designed for efficient processing and seamless integration across different ML frameworks and visualization tools.
import pixelflow as pffrom ultralytics import YOLOmodel = YOLO("yolo11n.pt")results = model.predict("image.jpg")detections = pf.detections.from_ultralytics(outputs)