ONNX-YOLOv8-Instance-Segmentation
ONNX-YOLOv8-Instance-Segmentation copied to clipboard
Python scripts performing Instance Segmentation using the YOLOv8 model in ONNX.
Hello, I would like to run inference using my converted onnx model but somehow I'm getting this error. Can you please look into it if possible? Thank you in advance...
In Yolo V8, we can extract polygon coordinates by: ``` model = YOLO(model_path) result = model(image, conf=conf)[0] polygon= result.masks.xy ``` how do we get the polygon coordinates in onnxruntime?
Hello I want to use yolov8 to do the segmentation ,,, and I have a dataset,, but some of the images in the dataset do not contain an object that...