Skip to content

Instantly share code, notes, and snippets.

@erichare
Last active June 30, 2022 23:15
Show Gist options
  • Save erichare/7c91615e198a4995e7eb0faa90281edf to your computer and use it in GitHub Desktop.
Save erichare/7c91615e198a4995e7eb0faa90281edf to your computer and use it in GitHub Desktop.
YOLO v6 Object Detection Implemented with Daisies
import pydaisi as pyd
from PIL import Image
yolo_object_detection = pyd.Daisi("erichare/YOLO v6 Object Detection")
img = Image.open("busystreet.png")
img.load()
yolo_result = yolo_object_detection.yolo(img, return_type=['Image']).value
yolo_result.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment