What problem does it solve?
SE3 Rigid Body Transformations provides robust 3D pose operations, enabling consistent rotation-translation handling for robotics, SLAM, and 3D vision pipelines by unifying representation and transformations in a single library.
Core Features & Use Cases
- Basic Matrix Operations: create, compose, and invert SE(3) transforms from rotation matrices and translations.
- Lie Group / Lie Algebra Mappings: provide Exp/Log maps and related utilities to move between se(3) vectors and SE(3) matrices.
- Representation Conversions: support quaternion+translation, axis-angle, and Euler-angle representations with batch support.
- Applications: pose estimation, trajectory processing, camera pose handling, and multi-view geometry tasks.
Quick Start
Experiment with SE3 transformations by constructing a transformation from a rotation matrix and translation vector, then apply SE3_inv and SE3_Log to verify consistency.