Library for manipulating pose keypoints
Project description
posecraft
posecraft is a Python package designed to load, manipulate, and transform pose data. It uses PyTorch to handle pose tensors, allowing you to perform operations such as centering, normalizing distances, filling missing values, and more.
Features
-
Pose Loading Load pose data (stored in
.npyformat) directly into a PyTorch tensor. -
Transforms A set of classes (inheriting from
torch.nn.Module) that can be chained to modify and clean your pose data, including:- CenterToKeypoint: Center all keypoints to a chosen reference keypoint.
- NormalizeDistances: Enforce a fixed distance between two chosen keypoints.
- FillMissing: Interpolate and fill missing (NaN) keypoints across frames.
- InterpolateFrames: Resample frames to a uniform number of frames.
- NormalizeFramesSpeed: Dynamically adjust frames based on the amount of movement.
- FilterLandmarks: Filter out unwanted landmarks based on a mask.
- PadTruncateFrames: Pad or truncate the total number of frames.
- RandomSampleFrames / RandomSampleFrameLegacy: Randomly sample frames with fixed intervals or by chunks.
- ReplaceNansWithZeros: Replace all NaN values in the tensor with zeros.
- UseFramesDiffs: Represent each frame as the difference from the previous frame.
- FlattenKeypoints: Reshape and flatten the keypoints across frames.
-
Animation Built-in functionality to animate the keypoints over time using
matplotlib.animation.FuncAnimation.
Installation
- Clone this repository or add
posecraftto your Python environment. - Install dependencies:
pip install -r requirements.txt
- (Optional) For development and documentation, navigate to the docs folder and install additional requirements.
Usage
Below is a basic example of how to load a pose and apply some transformations:
import torch
from posecraft.Pose import Pose
from posecraft.transforms import CenterToKeypoint, NormalizeDistances
# Load a pose from a .npy file
pose_data = Pose(path="path/to/pose.npy")
# Create a set of transforms
transforms = torch.nn.Sequential(
CenterToKeypoint(center_keypoint=0),
NormalizeDistances(indices=(11, 12), distance_factor=0.2)
)
# Apply transforms
transformed_pose = transforms(pose_data.pose)
# Now do something with 'transformed_pose', like visualizing or saving
You can also chain other available transforms (e.g., FillMissing, FilterLandmarks, etc.) depending on your data cleaning or preprocessing needs.
Documentation
Comprehensive documentation can be found under the docs/ folder. This includes:
- Guides on setting up a development container (
.devcontainer). - Instructions for running tests (
tests/) and CI workflows. - Explanation of each transform class and utility function.
To build and view the documentation locally, navigate to the docs/ folder and run:
make html
Then open the generated HTML files from docs/_build/html/.
Contributing
- Fork the repository and create a new branch for your contribution.
- Make your changes, then open a pull request (PR).
- Ensure all tests and documentation checks pass.
Please follow the CODE_OF_CONDUCT.md for guidance on project etiquette and the LICENSE for usage permissions.
Support and Security
For any questions or issues, please see SUPPORT.md. Security concerns should be reported as outlined in SECURITY.md.
License
This project is licensed under the terms of the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file posecraft-0.0.2rc72.post1.tar.gz.
File metadata
- Download URL: posecraft-0.0.2rc72.post1.tar.gz
- Upload date:
- Size: 302.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4eb334239ac5861100394295726e621f6b84698f9e26cc27f62ffb8620cb4608
|
|
| MD5 |
b21ece7365cdbc5e4748020c3c30d7f0
|
|
| BLAKE2b-256 |
10ded3cc1ac3756f369acb0142a53c7f988ec80aab620598cfe9a466d4cff058
|
File details
Details for the file posecraft-0.0.2rc72.post1-py3-none-any.whl.
File metadata
- Download URL: posecraft-0.0.2rc72.post1-py3-none-any.whl
- Upload date:
- Size: 283.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e608fee92136fd8d067b1f4a5a9733f5bd90218f152e970dc1bd2bed12ddee9e
|
|
| MD5 |
1c5f071f2a32dbc116dd2f7cdc469c19
|
|
| BLAKE2b-256 |
eab01e02c223e0845568ac53ad6c49ee827e2d6001866ec5942f52028a979346
|