File size: 149 Bytes
a5c6a73 |
1 2 3 4 5 6 |
from ultralytics import YOLO
model = YOLO("best.pt")
res = model("examples/example3.jpg", conf=0.35)
# res[0].show()
res[0].save(filename="out.jpg") |
a5c6a73 |
1 2 3 4 5 6 |
from ultralytics import YOLO
model = YOLO("best.pt")
res = model("examples/example3.jpg", conf=0.35)
# res[0].show()
res[0].save(filename="out.jpg") |