-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5d8aa79
commit 7b5866e
Showing
26 changed files
with
250 additions
and
210 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Publish to NPM | ||
on: | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
jobs: | ||
npm: | ||
runs-on: ubuntu-latest | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
registry-url: 'https://registry.npmjs.org' | ||
- run: npm publish --access public | ||
working-directory: Packages/ai.natml.vision.blazepose-detector |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,12 +44,12 @@ BlazePoseDetector.Detection[] faces = predictor.Predict(imageFeature); | |
___ | ||
|
||
## Requirements | ||
- Unity 2020.3+ | ||
- Unity 2021.2+ | ||
|
||
## Quick Tips | ||
- Join the [NatML community on Discord](https://hub.natml.ai/community). | ||
- Discover more ML models on [NatML Hub](https://hub.natml.ai). | ||
- See the [NatML documentation](https://docs.natml.ai/unity). | ||
- Join the [NatML community on Discord](https://hub.natml.ai/community). | ||
- Discuss [NatML on Unity Forums](https://forum.unity.com/threads/open-beta-natml-machine-learning-runtime.1109339/). | ||
- Contact us at [[email protected]](mailto:[email protected]). | ||
|
||
|
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...n.blazepose-detector/Runtime/Pose.cs.meta → ...zepose.detector/Runtime/Detection.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,37 @@ | ||
# BlazePose Detector Sample | ||
# BlazePose Detector | ||
|
||
![demo](demo.gif) | ||
|
||
*INCOMPLETE* | ||
Pose detection from Google MediaPipe. | ||
|
||
## Running the Sample | ||
Retrieve your access key from [NatML Hub](https://hub.natml.ai/profile) and add it to your Project Settings. Note that running the sample code requires an active [NatML Cloud](https://www.natml.ai/pricing) subscription: | ||
|
||
![project settings](https://github.com/natmlx/NatDevice/raw/main/.media/key.png) | ||
|
||
## Using the Predictor in a Different Project | ||
[See the predictor README for more details](Packages/ai.natml.vision.blazepose.detector/README.md). | ||
|
||
## Requirements | ||
- Unity 2021.2+ | ||
|
||
## Supported Platforms | ||
- Android API level 24+ | ||
- iOS 13+ | ||
- macOS 10.15+ (Apple Silicon and Intel) | ||
- Windows 10+ (64-bit only) | ||
- WebGL: | ||
- Chrome 91+ | ||
- Firefox 90+ | ||
|
||
## Resources | ||
- Join the [NatML community on Discord](https://hub.natml.ai/community). | ||
- See the [NatML documentation](https://docs.natml.ai/unity). | ||
- See the [NatDevice documentation](https://docs.natml.ai/natdevice). | ||
- Check out [NatML on GitHub](https://github.com/natmlx). | ||
- Read the [NatML blog](https://blog.natml.ai/). | ||
- Discuss [NatML on Unity Forums](https://forum.unity.com/threads/open-beta-natml-machine-learning-runtime.1109339/). | ||
- Discuss [NatDevice on Unity Forums](https://forum.unity.com/threads/natdevice-media-device-api.374690/). | ||
- Contact us at [[email protected]](mailto:[email protected]). | ||
|
||
Thank you very much! |
Oops, something went wrong.