728x90
1. 이미지 predict
from ultralytics import YOLO
# Load a pretrained YOLOv8n model
model = YOLO('yolov8n.pt')
# Define path to the image file
source = 'assets/bus.jpg'
# Run inference on the source
#results = model(source) # list of Results objects
model.predict('assets/bus.jpg', save=True)
'연구 > Yolov8' 카테고리의 다른 글
Yolov8 GPU로 학습시키기 (3) | 2024.03.19 |
---|---|
COCO Annotation Yolo 형식으로 변경하기 (0) | 2024.03.11 |