Code Monkey home page Code Monkey logo

yolov8's Introduction

YOLOv8

Use YOLOv8 in your C# project, for object detection, pose estimation and more, via ONNX Runtime

Use

Export from PyTorch

Run the following Python code to export the model to ONNX format:

from ultralytics import YOLO

# Load a model
model = YOLO('path/to/model')

# export the model to ONNX format
model.export(format='onnx', opset=15)

Note: Pay attention to specify opset=15 because the ONNX Runtime currently only supports up to Opset 15.

Use in C# with ONNX Runtime

using var predictor = new YoloV8(model);

var result = predictor.Detect("path/to/image");

Console.WriteLine(result);

Plotting

You can use the following code to predict and plot a image, and save to file:

var image = "path/to/image";

using var predictor = new YoloV8("path/to/model");

var result = predictor.Pose(image);

using var origin = Image.Load<Rgb24>(image);
using var ploted = result.PlotImage(origin);


ploted.Save("./pose_demo.jpg")

Examples:

Detection:

detect_demo!

Pose:

pose_demo!

Segmentation:

seg_demo!

License

MIT License

yolov8's People

Contributors

dme-compunet avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.