First inference
Run your first inference using copy-paste-ready code.
Run this first
# Quick start: one image → inference → overlay
from degirum_tools import ModelSpec, remote_assets, Display
model_spec = ModelSpec(
model_name="yolov8n_coco--640x640_quant_hailort_multidevice_1",
zoo_url="degirum/hailo",
inference_host_address="@local",
model_properties={"device_type": ["HAILORT/HAILO8", "HAILORT/HAILO8L"]},
)
model = model_spec.load_model()
img = remote_assets.three_persons
res = model(img)
with Display("AI Camera") as output_display:
output_display.show_image(res.image_overlay)
What just happened
Last updated
Was this helpful?

