Skip to content

C # calls OpenVINO to deploy Al model project development.

License

Notifications You must be signed in to change notification settings

JKLEE1015/OpenVINOSharp

 
 

Repository files navigation

OpenVinoSharp

简体中文 | English

This is OpenVINOSharp 3.0 version, which is still under construction and its features are not yet fully developed. If there are any issues during use, please feel free to contact me. If you are interested in this project, you can also join our development.🥰🥰🥰

📚 What is OpenVINOSharp ?

OpenVINO™ is an open-source toolkit for optimizing and deploying AI inference.

  • Boost deep learning performance in computer vision, automatic speech recognition, natural language processing and other common tasks
  • Use models trained with popular frameworks like TensorFlow, PyTorch and more
  • Reduce resource demands and efficiently deploy on a range of Intel® platforms from edge to cloud

  However, OpenVINO™ No C# language interface provided, which is beneficial for using OpenVINO™ in C# bringing a lot of trouble, therefore based on OpenVINO™ The tool kit has launched OpenVINOSharp, aiming to drive OpenVINO™ Application in the C # field. OpenVINOSharp is based on OpenVINO™ Development, supported platforms, and OpenVINO™ Consistent, please refer to OpenVINO™ for specific information.

   Currently, OpenVINOSharp has been updated and iterated to version 3.0. Compared to the previous version, OpenVinoSharp version 3.0 has undergone a significant update, replacing the original refactoring of the C++API with directly reading OpenVINO\™ The official C API makes the application more flexible and supports a richer range of functions.

NuGet Package

Managed Library

Package Description Link
OpenVinoSharp.win OpenVinoSharp core libraries,comes with a complete OpenVINO 2023.0 dependency library NuGet Gallery

⚙ How to install OpenVINOSharp?

The following article provides installation methods for OpenVINOSharp on different platforms, which can be installed according to your own platform.

🏷How to use OpenVINOSharp?

If you don't know how to use it, simply understand the usage method through the following code.

using OpenVinoSharp;
namespace test 
{
    internal class Program
    {
        static void Main(string[] args)
        {
            Core core = new Core();
            Model model = core.read_model("./model.xml");
            CompiledModel compiled_model = core.compiled_model(model, "AUTO"); 
            InferRequest infer_request = compiled_model.create_infer_request(); 
            Tensor input_tensor = infer_request.get_tensor("images"); 
            infer_request.infer(); 
            Tensor output_tensor = infer_request.get_tensor("output0"); 
            core.free(); 
        }
    }
}

The classes and objects encapsulated in the project, such as Core, Model, Tensor, etc., are implemented by calling the C API interface and have unmanaged resources. They need to be handled by calling the **dispose() ** method, otherwise memory leakage may occur.

💻 Tutorial Examples

🗂 API Reference

If you want to learn more information, you can refer to: OpenVINOSharp API Documented (API Documented is under construction)

🔃 Update log

🔥 2023.6.19 : release OpenVinoSharp 3.0

  • 🗳OpenVinoSharp :
    • Upgrade OpenVinoSharp 2.0 to OpenVinoSharp 3.0, changing from refactoring the C++API to directly reading OpenVino ™ The official C API makes the application more flexible and supports a richer range of functions.
  • 🛹Application Cases:
    • OpenVinoSharp Deployment Yolov8 Model Example。
  • 🔮NuGe:
    • Create and publish NuGet package, release * * OpenVinoSharp. win 3.0.120 * *, including OpenVino 2023.0 dependencies.

🎖 Contribute

  If you are interested in OpenVINO ™ Interested in using C # and contributing to the open source community, welcome to join us and develop OpenVinoSharp together.   If you have any ideas or improvement ideas for this project, please feel free to contact us for guidance on our work.

License

The release of this project is certified under the Apache 2.0 license .

About

C # calls OpenVINO to deploy Al model project development.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%