How to generate segmentation YOLOV8(YOLOV8 get predicted segmentation )

问题描述 投票:0回答:1

我可以得到图像中的边界框我需要对图像进行分割 YOLOV8 YOLOV8 得到预测分割

python object-detection yolo
1个回答
0
投票

我有一些想法可能会给你一点帮助。 在官方文档中,除了使用预训练模型/权重之外,我没有找到任何生成分段的方法。 作为官方给出的样本,

from ultralytics import YOLO

# Load a model
# this model should be downloaded in advance, or the YOLO will download it by itself.
model = YOLO("yolov8n-seg.pt")  # load a pretrained model (recommended for training)

# Train the model
model.train(data="YOUR DATASET PATH", epochs=100, imgsz=640)

然后你可以得到一个名为

的结果文件夹

./跑/火车

© www.soinside.com 2019 - 2024. All rights reserved.