Last active
June 30, 2022 23:15
-
-
Save erichare/7c91615e198a4995e7eb0faa90281edf to your computer and use it in GitHub Desktop.
YOLO v6 Object Detection Implemented with Daisies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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