Edit model card

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
2
Inference API
Inference API (serverless) does not yet support ultralytics models for this pipeline type.