Paul Bird
commited on
Commit
·
80b735d
1
Parent(s):
06ba6cf
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
---
|
| 4 |
+
|
| 5 |
+
## MiDaS depth estimation model in Unity Sentis format
|
| 6 |
+
This is a depth estimation model that is confirmed to run in Unity 2023.
|
| 7 |
+
|
| 8 |
+
## How to Use
|
| 9 |
+
Source code to run this model can be found at: https://github.com/Unity-Technologies/sentis-samples/tree/main/DepthEstimationSample
|
| 10 |
+
|
| 11 |
+
To use *.sentis precompiled file, place the file in the Assets/StreamingAssets folder. And replace the loading code with:
|
| 12 |
+
```
|
| 13 |
+
Model model = ModelLoader.Load("model-small_opset19.sentis");
|
| 14 |
+
```
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
## Unity Sentis
|
| 18 |
+
Unity Sentis is the inference engine that runs in Unity 3D. More information can be found at [here](https://unity.com/products/sentis)
|
| 19 |
+
|
| 20 |
+
|