Add your description here
Project description
ezpose
A Python package for working with 3D transformations and poses.
This package aims to extend scipy.spatial.transform.Rotation class to work with rigid transformations(i.e. SE(3) poses).
Installation
To install this package, you can use pip:
pip install ezpose
Usage
Here's an example of how to use this package:
from ezpose import SE3, SO3
# Create a random 3D transformation
transform = SE3.random()
# Apply the transformation to a vector
vector = np.array([1, 2, 3])
transformed_vector = transform.apply(vector)
# Multiply two transformations
transform2 = SE3.random()
result = transform.multiply(transform2)
API Reference
Here's a list of the classes and functions in this package:
-
SO3: A class representing a 3D rotation matrix in SO(3).- this is a subclass of
scipy.spatial.transform.Rotation
- this is a subclass of
-
SE3: A class representing a 3D transformation matrix in SE(3).random(): A method to generate a random SE3 object.apply(): A method to apply the transformation to a vector.multiply(): A method to multiply two SE3 objects. (= pose1 @ pose2)inv(): A method to return the inverse of the transformation.lookat(): A method that returns the view matrix from the given camera position to the target position.as_matrix(): A method to convert the transformation to a 4x4 matrix.as_xyz_qtn(): A method to convert the transformation to a numpy array of (position, quaternion).
License
This package is licensed under 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 ezpose-0.1.11.tar.gz.
File metadata
- Download URL: ezpose-0.1.11.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edb80f35c0c065384e901f75c176a44c479a756c6dcecb4b349f34f50ad0c8b3
|
|
| MD5 |
9786ad49265a5ab79d62ca07b0e9083e
|
|
| BLAKE2b-256 |
ad4377aafc99b7ec60fa74d437c9df6e3b18919d235ec94f5e72071b58633fdb
|
File details
Details for the file ezpose-0.1.11-py3-none-any.whl.
File metadata
- Download URL: ezpose-0.1.11-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9072b823dcce894931d2b2fca4c3a32b45aea7554034a5deefac1c2b6a3a2a00
|
|
| MD5 |
a65aea3159033c7974653c0793197e73
|
|
| BLAKE2b-256 |
24f2ca03f8927bb53dfc39649755f34199c86e1e2b357ea32576f7edddb77c7e
|