Instructions to use unity/inference-engine-yolo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- unity-sentis
How to use unity/inference-engine-yolo with unity-sentis:
string modelName = "[Your model name here].sentis"; Model model = ModelLoader.Load(Application.streamingAssetsPath + "/" + modelName); IWorker engine = WorkerFactory.CreateWorker(BackendType.GPUCompute, model); // Please see provided C# file for more details
- Notebooks
- Google Colab
- Kaggle
Thank you message
#14
by Ju97412 - opened
Thank you for your update about using YOLO on Unity 6, you gave me hope by sharing your project. It does work well, I was able to integrate your code to a WebcamTexture for my school project.
You are welcome! Good luck with your project!
Please let us know if you encounter any issues while using it.
Could you please show how to integrate the project with a webcam?