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
PB Unity commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,7 +11,7 @@ First get the package `com.unity.sentis` from the package manager.
|
|
| 11 |
You will also need the Unity UI package.
|
| 12 |
|
| 13 |
* Create a new scene in Unity 2023.
|
| 14 |
-
* Install
|
| 15 |
* Add the c# script to the Main Camera.
|
| 16 |
* Create a Raw Image in the scene and link it as the `displayImage`
|
| 17 |
* Put the yolov8n.sentis file in the Assets/StreamingAssets folder
|
|
|
|
| 11 |
You will also need the Unity UI package.
|
| 12 |
|
| 13 |
* Create a new scene in Unity 2023.
|
| 14 |
+
* Install `com.unity.sentis` version `1.3.0-pre.3` from the package manager
|
| 15 |
* Add the c# script to the Main Camera.
|
| 16 |
* Create a Raw Image in the scene and link it as the `displayImage`
|
| 17 |
* Put the yolov8n.sentis file in the Assets/StreamingAssets folder
|