Getting Started with PixelFlow
This guide walks you through installing PixelFlow and demonstrates common use cases with working code examples.
Basic Installation
pip install pixelflow
Requires Python: 3.9 or higher
Basic Usage
The core PixelFlow workflow follows three steps: Detect → Convert → Process
import pixelflow as pffrom ultralytics import YOLO# 1. Run your modelmodel = YOLO("yolov11n.pt")results = model("image.jpg")# 2. Convert to PixelFlow formatdetections = pf.from_ultralytics(results)detections = pf.filter_by_confidence(0.7)# 3. Process and visualizeannotated = pf.annotate.box(image, detections)annotated = pf.annotate.label(annotated, detections)