Add Yolo Pose to JS Example (#684)

* add support for yolo pose models

* fix copy
This commit is contained in:
Radamés Ajna
2023-08-30 22:32:57 -07:00
committed by GitHub
parent eaf760a751
commit 9bd486fb96
3 changed files with 117 additions and 23 deletions

View File

@ -31,7 +31,7 @@ sh build-lib.sh
This will bundle the library under `./build` and we can import it inside our WebWorker like a normal JS module:
```js
import init, { Model } from "./build/m.js";
import init, { Model, ModelPose } from "./build/m.js";
```
The full example can be found under `./lib-example.html`. All needed assets are fetched from the web, so no need to download anything.