This Unity package provides an easy-to-use and customizable solution to work with and visualize 2D human poses on a Unity canvas.
unity-human-pose-2d-toolkit-demo.mp4
GitHub Repository | Description |
---|---|
barracuda-inference-posenet-demo | Perform 2D human pose estimation using PoseNet models. |
- Display 2D pose skeletons with customizable transparency and colors
- Automatically manage and update UI elements based on provided pose data
- Compatible with Unity UI
- Unity game engine
You can install the Human Pose 2D Toolkit package using the Unity Package Manager:
- Open your Unity project.
- Go to Window > Package Manager.
- Click the "+" button in the top left corner, and choose "Add package from git URL..."
- Enter the GitHub repository URL:
https://github.com/cj-mills/unity-human-pose-2d-toolkit.git
- Click "Add". The package will be added to your project.
For Unity versions older than 2021.1, add the Git URL to the manifest.json
file in your project's Packages
folder as a dependency:
{
"dependencies": {
"com.cj-mills.human-pose-2d-toolkit": "https://github.com/cj-mills/unity-human-pose-2d-toolkit.git",
// other dependencies...
}
}