YOLOv8 model to detect wavy lines in images

Inference

Supported Labels

["line"]

How to use

pip install ultralyticsplus
from ultralyticsplus import YOLO, render_result

# load model
model = YOLO('best.pt')

# set image
image = "https://dl.ndl.go.jp/api/iiif/1879314/R0000039/full/640,640/0/default.jpg"

# perform inference
results = model.predict(image, verbose=False)

# observe results
render = render_result(model=model, image=image, result=results[0])
render.show()
Downloads last month
1
Inference Providers NEW
This model is not currently available via any of the supported third-party Inference Providers, and the HF Inference API does not support ultralytics models with pipeline type object-detection