https://github.com/cj-mills/unity-human-pose-2d-toolkit
This Unity package provides an easy-to-use and customizable solution to work with and visualize 2D human poses on a Unity canvas.
https://github.com/cj-mills/unity-human-pose-2d-toolkit
2d human-pose package toolkit unity unity-canvas visualization
Last synced: 30 days ago
JSON representation
This Unity package provides an easy-to-use and customizable solution to work with and visualize 2D human poses on a Unity canvas.
- Host: GitHub
- URL: https://github.com/cj-mills/unity-human-pose-2d-toolkit
- Owner: cj-mills
- Created: 2023-04-13T23:14:54.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-12T04:36:14.000Z (over 2 years ago)
- Last Synced: 2025-09-08T17:01:05.613Z (about 1 month ago)
- Topics: 2d, human-pose, package, toolkit, unity, unity-canvas, visualization
- Language: C#
- Homepage: https://christianjmills.com/posts/unity-human-pose-2d-toolkit-walkthrough/
- Size: 33.2 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Unity Human Pose 2D Toolkit
This Unity package provides an easy-to-use and customizable solution to work with and visualize 2D human poses on a Unity canvas.## Demo Video
https://user-images.githubusercontent.com/9126128/231926454-ae40f842-7b90-4fa9-97f3-245d9d788ee5.mp4## Demo Projects
| GitHub Repository | Description |
| ------------------------------------------------------------ | ---------------------------------------------------------- |
| [barracuda-inference-posenet-demo](https://github.com/cj-mills/barracuda-inference-posenet-demo) | Perform 2D human pose estimation using PoseNet models. |## Code Walkthrough
* [Code Walkthrough: Unity Human Pose 2D Toolkit Package](https://christianjmills.com/posts/unity-human-pose-2d-toolkit-walkthrough/)## Features
- Display 2D pose skeletons with customizable transparency and colors
- Automatically manage and update UI elements based on provided pose data
- Compatible with Unity UI## Getting Started
### Prerequisites
- Unity game engine
### Installation
You can install the Human Pose 2D Toolkit package using the Unity Package Manager:
1. Open your Unity project.
2. Go to Window > Package Manager.
3. Click the "+" button in the top left corner, and choose "Add package from git URL..."
4. Enter the GitHub repository URL: `https://github.com/cj-mills/unity-human-pose-2d-toolkit.git`
5. 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:
```json
{
"dependencies": {
"com.cj-mills.human-pose-2d-toolkit": "https://github.com/cj-mills/unity-human-pose-2d-toolkit.git",
// other dependencies...
}
}```