spatialmath-python


Namespatialmath-python JSON
Version 1.1.9 PyPI version JSON
download
home_page
SummaryProvides spatial maths capability for Python
upload_time2024-01-03 17:06:44
maintainer
docs_urlNone
author
requires_python>=3.7
license
keywords spatial-math spatial math so2 se2 so3 se3 so(2) se(2) so(3) se(3) twist product of exponential translation orientation angle-axis lie group skew symmetric matrix pose translation rotation matrix rigid body transform homogeneous transformation euler angles roll-pitch-yaw angles quaternion unit-quaternion robotics robot vision computer vision
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Spatial Maths for Python

[![A Python Robotics Package](https://raw.githubusercontent.com/petercorke/robotics-toolbox-python/master/.github/svg/py_collection.min.svg)](https://github.com/petercorke/robotics-toolbox-python)
[![QUT Centre for Robotics Open Source](https://github.com/qcr/qcr.github.io/raw/master/misc/badge.svg)](https://qcr.github.io)

[![PyPI version](https://badge.fury.io/py/spatialmath-python.svg)](https://badge.fury.io/py/spatialmath-python)
[![Anaconda version](https://anaconda.org/conda-forge/spatialmath-python/badges/version.svg)](https://anaconda.org/conda-forge/spatialmath-python)
![Python Version](https://img.shields.io/pypi/pyversions/spatialmath-python.svg)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

[![Build Status](https://github.com/bdaiinstitute/spatialmath-python/actions/workflows/master.yml/badge.svg?branch=master)](https://github.com/bdaiinstitute/spatialmath-python/actions/workflows/master.yml?query=workflow%3Abuild+branch%3Amaster)
[![Coverage](https://codecov.io/github/bdaiinstitute/spatialmath-python/graph/badge.svg?token=W15FGBA059)](https://codecov.io/github/bdaiinstitute/spatialmath-python)
[![PyPI - Downloads](https://img.shields.io/pypi/dw/spatialmath-python)](https://pypistats.org/packages/spatialmath-python)
[![GitHub stars](https://img.shields.io/github/stars/bdaiinstitute/spatialmath-python.svg?style=social&label=Star)](https://GitHub.com/bdaiinstitute/spatialmath-python/stargazers/)



<table style="border:0px">
<tr style="border:0px">
<td style="border:0px">
<img src="https://github.com/bdaiinstitute/spatialmath-python/raw/master/docs/figs/CartesianSnakes_LogoW.png" width="200"></td>
<td style="border:0px">
A Python implementation of the <a href="https://github.com/petercorke/spatial-math">Spatial Math Toolbox for MATLAB<sup>&reg;</sup></a>
<ul>
<li><a href="https://github.com/bdaiinstitute/spatialmath-python">GitHub repository </a></li>
<li><a href="https://bdaiinstitute.github.io/spatialmath-python">Documentation</a></li>
<li><a href=https://github.com/bdaiinstitute/spatialmath-python/discussions/categories/changes>Recent changes</a>
<li><a href="https://github.com/bdaiinstitute/spatialmath-python/wiki">Wiki (examples and details)</a></li>
<li><a href="installation#">Installation</a></li>
</ul>
</td>
</tr>
</table>

Spatial mathematics capability underpins all of robotics and robotic vision where we need to describe the position, orientation or pose of objects in 2D or 3D spaces.



# What it does

The package provides classes to represent pose and orientation in 3D and 2D
space:

| Represents   | in 3D            |   in 2D  |
| ------------ | ---------------- | -------- |
| pose         | ``SE3`` ``Twist3`` ``UnitDualQuaternion``   |   ``SE2`` ``Twist2`` |
| orientation  | ``SO3`` ``UnitQuaternion`` |            ``SO2``  |
                
                
More specifically:

 * `SE3` matrices belonging to the group $\mathbf{SE}(3)$ for position and orientation (pose) in 3-dimensions
 * `SO3` matrices belonging to the group $\mathbf{SO}(3)$ for orientation in 3-dimensions
 *  `UnitQuaternion` belonging to the group $\mathbf{S}^3$ for orientation in 3-dimensions
 * `Twist3` vectors belonging to the group $\mathbf{se}(3)$ for pose in 3-dimensions
 * `UnitDualQuaternion` maps to the group $\mathbf{SE}(3)$ for position and orientation (pose) in 3-dimensions
 * `SE2` matrices belonging to the group $\mathbf{SE}(2)$ for position and orientation (pose) in 2-dimensions
 * `SO2` matrices belonging to the group $\mathbf{SO}(2)$ for orientation in 2-dimensions
 * `Twist2` vectors belonging to the group $\mathbf{se}(2)$ for pose in 2-dimensions


These classes provide convenience and type safety, as well as methods and overloaded operators to support:

 * composition, using the `*` operator
 * point transformation, using the `*` operator
 * exponent, using the `**` operator
 * normalization
 * inversion
 * connection to the Lie algebra via matrix exponential and logarithm operations
 * conversion of orientation to/from Euler angles, roll-pitch-yaw angles and angle-axis forms.
 * list operations such as append, insert and get

These are layered over a set of base functions that perform many of the same operations but represent data explicitly in terms of `numpy` arrays.

The class, method and functions names largely mirror those of the MATLAB toolboxes, and the semantics are quite similar.

![trplot](https://github.com/bdaiinstitute/spatialmath-python/raw/master/docs/figs/fig1.png)

![animation video](./docs/figs/animate.gif)

# Citing

Check out our ICRA 2021 paper on [IEEE Xplore](https://ieeexplore.ieee.org/document/9561366) or get the PDF from [Peter's website](https://bit.ly/icra_rtb).  This describes the [Robotics Toolbox for Python](https://github.com/petercorke/robotics-toolbox-python) as well Spatial Maths.

If the toolbox helped you in your research, please cite

```
@inproceedings{rtb,
  title={Not your grandmother’s toolbox--the Robotics Toolbox reinvented for Python},
  author={Corke, Peter and Haviland, Jesse},
  booktitle={2021 IEEE International Conference on Robotics and Automation (ICRA)},
  pages={11357--11363},
  year={2021},
  organization={IEEE}
}
```

<br>

<a id='6'></a>

## Using the Toolbox in your Open Source Code?

If you are using the Toolbox in your open source code, feel free to add our badge to your readme!

[![Powered by the Spatial Math Toolbox](https://github.com/bdaiinstitute/spatialmath-python/raw/master/.github/svg/sm_powered.min.svg)](https://github.com/bdaiinstitute/spatialmath-python)

Simply copy the following

```
[![Powered by the Spatial Math Toolbox](https://github.com/bdaiinstitute/spatialmath-python/raw/master/.github/svg/sm_powered.min.svg)](https://github.com/bdaiinstitute/spatialmath-python)
```


# Installation

## Using pip

Install a snapshot from PyPI

```
pip install spatialmath-python
```

## From GitHub

Install the current code base from GitHub and pip install a link to that cloned copy

```
git clone https://github.com/bdaiinstitute/spatialmath-python.git
cd spatialmath-python
pip install -e .
# Optional: if you would like to contribute and commit code changes to the repository,
# pre-commit install
```

## Dependencies

`numpy`, `scipy`, `matplotlib`, `ffmpeg` (if rendering animations as a movie)

# Examples


## High-level classes

These classes abstract the low-level numpy arrays into objects that obey the rules associated with the mathematical groups SO(2), SE(2), SO(3), SE(3) as well as twists and quaternions.

Using classes ensures type safety, for example it stops us mixing a 2D homogeneous transformation with a 3D rotation matrix -- both of which are 3x3 matrices.  It also ensures that the internal matrix representation is always a valid member of the relevant group.

For example, to create an object representing a rotation of 0.3 radians about the x-axis is simply

```python
>>> from spatialmath import SO3, SE3
>>> R1 = SO3.Rx(0.3)
>>> R1
   1         0         0          
   0         0.955336 -0.29552    
   0         0.29552   0.955336         
```
while a rotation of 30 deg about the z-axis is

```python
>>> R2 = SO3.Rz(30, 'deg')
>>> R2
   0.866025 -0.5       0          
   0.5       0.866025  0          
   0         0         1    
```
and the composition of these two rotations is 

```python
>>> R = R1 * R2
   0.866025 -0.5       0          
   0.433013  0.75     -0.5        
   0.25      0.433013  0.866025 
```

We can find the corresponding Euler angles (in radians)

```python
>> R.eul()
array([-1.57079633,  0.52359878,  2.0943951 ])
```

Frequently in robotics we want a sequence, a trajectory, of rotation matrices or poses. These pose classes inherit capability from the `list` class

```python
>>> R = SO3()   # the null rotation or identity matrix
>>> R.append(R1)
>>> R.append(R2)
>>> len(R)
 3
>>> R[1]
   1         0         0          
   0         0.955336 -0.29552    
   0         0.29552   0.955336             
```
and this can be used in `for` loops and list comprehensions.

An alternative way of constructing this would be (`R1`, `R2` defined above)

```python
>>> R = SO3( [ SO3(), R1, R2 ] )       
>>> len(R)
 3
```

Many of the constructors such as `.Rx`, `.Ry` and `.Rz` support vectorization

```python
>>> R = SO3.Rx( np.arange(0, 2*np.pi, 0.2))
>>> len(R)
 32
```
which has created, in a single line, a list of rotation matrices.

Vectorization also applies to the operators, for instance

```python
>>> A = R * SO3.Ry(0.5)
>>> len(R)
 32
```
will produce a result where each element is the product of each element of the left-hand side with the right-hand side, ie. `R[i] * SO3.Ry(0.5)`.

Similarly

```python
>>> A = SO3.Ry(0.5) * R 
>>> len(R)
 32
```
will produce a result where each element is the product of the left-hand side with each element of the right-hand side , ie. `SO3.Ry(0.5) * R[i] `.

Finally

```python
>>> A = R * R 
>>> len(R)
 32
```
will produce a result where each element is the product of each element of the left-hand side with each element of the right-hand side , ie. `R[i] * R[i] `.

The underlying representation of these classes is a numpy matrix, but the class ensures that the structure of that matrix is valid for the particular group represented: SO(2), SE(2), SO(3), SE(3).  Any operation that is not valid for the group will return a matrix rather than a pose class, for example

```python
>>> SO3.Rx(0.3) * 2
array([[ 2.        ,  0.        ,  0.        ],
       [ 0.        ,  1.91067298, -0.59104041],
       [ 0.        ,  0.59104041,  1.91067298]])

>>> SO3.Rx(0.3) - 1
array([[ 0.        , -1.        , -1.        ],
       [-1.        , -0.04466351, -1.29552021],
       [-1.        , -0.70447979, -0.04466351]])
```

We can print and plot these objects as well

```
>>> T = SE3(1,2,3) * SE3.Rx(30, 'deg')
>>> T.print()
   1         0         0         1          
   0         0.866025 -0.5       2          
   0         0.5       0.866025  3          
   0         0         0         1          

>>> T.printline()
t =        1,        2,        3; rpy/zyx =       30,        0,        0 deg

>>> T.plot()
```

![trplot](https://github.com/bdaiinstitute/spatialmath-python/raw/master/docs/figs/fig1.png)

`printline` is a compact single line format for tabular listing, whereas `print` shows the underlying matrix and for consoles that support it, it is colorised, with rotational elements in red and translational elements in blue.

For more detail checkout the shipped Python notebooks:

* [gentle introduction](https://github.com/bdaiinstitute/spatialmath-python/blob/master/notebooks/gentle-introduction.ipynb)
* [deeper introduction](https://github.com/bdaiinstitute/spatialmath-python/blob/master/notebooks/introduction.ipynb)


You can browse it statically through the links above, or clone the toolbox and run them interactively using [Jupyter](https://jupyter.org) or [JupyterLab](https://jupyter.org).


## Low-level spatial math


Import the low-level transform functions

```
>>> from spatialmath.base import *
```

We can create a 3D rotation matrix

```
>>> rotx(0.3)
array([[ 1.        ,  0.        ,  0.        ],
       [ 0.        ,  0.95533649, -0.29552021],
       [ 0.        ,  0.29552021,  0.95533649]])

>>> rotx(30, unit='deg')
array([[ 1.       ,  0.       ,  0.       ],
       [ 0.       ,  0.8660254, -0.5      ],
       [ 0.       ,  0.5      ,  0.8660254]])
```
The results are `numpy` arrays so to perform matrix multiplication you need to use the `@` operator, for example

```
rotx(0.3) @ roty(0.2)
```

We also support multiple ways of passing vector information to functions that require it:

* as separate positional arguments

```
transl2(1, 2)
array([[1., 0., 1.],
       [0., 1., 2.],
       [0., 0., 1.]])
```

* as a list or a tuple

```
transl2( [1,2] )
array([[1., 0., 1.],
       [0., 1., 2.],
       [0., 0., 1.]])

transl2( (1,2) )
Out[444]: 
array([[1., 0., 1.],
       [0., 1., 2.],
       [0., 0., 1.]])
```

* or as a `numpy` array

```
transl2( np.array([1,2]) )
Out[445]: 
array([[1., 0., 1.],
       [0., 1., 2.],
       [0., 0., 1.]])
```


There is a single module that deals with quaternions, unit or not, and the representation is a `numpy` array of four elements.  As above, functions can accept the `numpy` array, a list, dict or `numpy` row or column vectors.

```
>>> from spatialmath.base.quaternion import *
>>> q = qqmul([1,2,3,4], [5,6,7,8])
>>> q
array([-60,  12,  30,  24])
>>> qprint(q)
-60.000000 < 12.000000, 30.000000, 24.000000 >
>>> qnorm(q)
72.24956747275377
```

## Graphics

![trplot](https://github.com/bdaiinstitute/spatialmath-python/raw/master/docs/figs/transforms3d.png)

The functions support various plotting styles

```
trplot( transl(1,2,3), frame='A', rviz=True, width=1, dims=[0, 10, 0, 10, 0, 10])
trplot( transl(3,1, 2), color='red', width=3, frame='B')
trplot( transl(4, 3, 1)@trotx(math.pi/3), color='green', frame='c', dims=[0,4,0,4,0,4])
```

Animation is straightforward

```
tranimate(transl(4, 3, 4)@trotx(2)@troty(-2), frame='A', arrow=False, dims=[0, 5], nframes=200)
```

and it can be saved to a file by

```
tranimate(transl(4, 3, 4)@trotx(2)@troty(-2), frame='A', arrow=False, dims=[0, 5], nframes=200, movie='out.mp4')
```

![animation video](./docs/figs/animate.gif)

At the moment we can only save as an MP4, but the following incantation will covert that to an animated GIF for embedding in web pages

```
ffmpeg -i out -r 20 -vf "fps=10,scale=640:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" out.gif
```

For use in a Jupyter notebook, or on Colab, you can display an animation by
```
from IPython.core.display import HTML
HTML(tranimate(transl(4, 3, 4)@trotx(2)@troty(-2), frame='A', arrow=False, dims=[0, 5], nframes=200, movie=True))
```
The `movie=True` option causes `tranimate` to output an HTML5 fragment which
is displayed inline by the `HTML` function.

## Symbolic support

Some functions have support for symbolic variables, for example

```
import sympy

theta = sym.symbols('theta')
print(rotx(theta))
[[1 0 0]
 [0 cos(theta) -sin(theta)]
 [0 sin(theta) cos(theta)]]
```

The resulting `numpy` array is an array of symbolic objects not numbers &ndash; the constants are also symbolic objects.  You can read the elements of the matrix

```
a = T[0,0]

a
Out[258]: 1

type(a)
Out[259]: int

a = T[1,1]
a
Out[256]: 
cos(theta)
type(a)
Out[255]: cos
```
We see that the symbolic constants are converted back to Python numeric types on read.

Similarly when we assign an element or slice of the symbolic matrix to a numeric value, they are converted to symbolic constants on the way in.

## History & Contributors

This package was originally created by [Peter Corke](https://github.com/petercorke) and [Jesse Haviland](https://github.com/jhavl) and was inspired by the [Spatial Math Toolbox for MATLAB](https://github.com/petercorke/spatialmath-matlab).  It supports the textbook [Robotics, Vision & Control in Python 3e](https://github.com/petercorke/RVC3-python).

The package is now a collaboration with [Boston Dynamics AI Institute](https://theaiinstitute.com/).

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "spatialmath-python",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "spatial-math,spatial math,SO2,SE2,SO3,SE3,SO(2),SE(2),SO(3),SE(3),twist,product of exponential,translation,orientation,angle-axis,Lie group,skew symmetric matrix,pose,translation,rotation matrix,rigid body transform,homogeneous transformation,Euler angles,roll-pitch-yaw angles,quaternion,unit-quaternion,robotics,robot vision,computer vision",
    "author": "",
    "author_email": "Peter Corke <rvc@petercorke.com>",
    "download_url": "https://files.pythonhosted.org/packages/f4/40/59d3d26abc7401a6a0b20bca5cd464598a33af0d3e3a9a6a1155c348fee3/spatialmath-python-1.1.9.tar.gz",
    "platform": null,
    "description": "# Spatial Maths for Python\n\n[![A Python Robotics Package](https://raw.githubusercontent.com/petercorke/robotics-toolbox-python/master/.github/svg/py_collection.min.svg)](https://github.com/petercorke/robotics-toolbox-python)\n[![QUT Centre for Robotics Open Source](https://github.com/qcr/qcr.github.io/raw/master/misc/badge.svg)](https://qcr.github.io)\n\n[![PyPI version](https://badge.fury.io/py/spatialmath-python.svg)](https://badge.fury.io/py/spatialmath-python)\n[![Anaconda version](https://anaconda.org/conda-forge/spatialmath-python/badges/version.svg)](https://anaconda.org/conda-forge/spatialmath-python)\n![Python Version](https://img.shields.io/pypi/pyversions/spatialmath-python.svg)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\n[![Build Status](https://github.com/bdaiinstitute/spatialmath-python/actions/workflows/master.yml/badge.svg?branch=master)](https://github.com/bdaiinstitute/spatialmath-python/actions/workflows/master.yml?query=workflow%3Abuild+branch%3Amaster)\n[![Coverage](https://codecov.io/github/bdaiinstitute/spatialmath-python/graph/badge.svg?token=W15FGBA059)](https://codecov.io/github/bdaiinstitute/spatialmath-python)\n[![PyPI - Downloads](https://img.shields.io/pypi/dw/spatialmath-python)](https://pypistats.org/packages/spatialmath-python)\n[![GitHub stars](https://img.shields.io/github/stars/bdaiinstitute/spatialmath-python.svg?style=social&label=Star)](https://GitHub.com/bdaiinstitute/spatialmath-python/stargazers/)\n\n\n\n<table style=\"border:0px\">\n<tr style=\"border:0px\">\n<td style=\"border:0px\">\n<img src=\"https://github.com/bdaiinstitute/spatialmath-python/raw/master/docs/figs/CartesianSnakes_LogoW.png\" width=\"200\"></td>\n<td style=\"border:0px\">\nA Python implementation of the <a href=\"https://github.com/petercorke/spatial-math\">Spatial Math Toolbox for MATLAB<sup>&reg;</sup></a>\n<ul>\n<li><a href=\"https://github.com/bdaiinstitute/spatialmath-python\">GitHub repository </a></li>\n<li><a href=\"https://bdaiinstitute.github.io/spatialmath-python\">Documentation</a></li>\n<li><a href=https://github.com/bdaiinstitute/spatialmath-python/discussions/categories/changes>Recent changes</a>\n<li><a href=\"https://github.com/bdaiinstitute/spatialmath-python/wiki\">Wiki (examples and details)</a></li>\n<li><a href=\"installation#\">Installation</a></li>\n</ul>\n</td>\n</tr>\n</table>\n\nSpatial mathematics capability underpins all of robotics and robotic vision where we need to describe the position, orientation or pose of objects in 2D or 3D spaces.\n\n\n\n# What it does\n\nThe package provides classes to represent pose and orientation in 3D and 2D\nspace:\n\n| Represents   | in 3D            |   in 2D  |\n| ------------ | ---------------- | -------- |\n| pose         | ``SE3`` ``Twist3`` ``UnitDualQuaternion``   |   ``SE2`` ``Twist2`` |\n| orientation  | ``SO3`` ``UnitQuaternion`` |            ``SO2``  |\n                \n                \nMore specifically:\n\n * `SE3` matrices belonging to the group $\\mathbf{SE}(3)$ for position and orientation (pose) in 3-dimensions\n * `SO3` matrices belonging to the group $\\mathbf{SO}(3)$ for orientation in 3-dimensions\n *  `UnitQuaternion` belonging to the group $\\mathbf{S}^3$ for orientation in 3-dimensions\n * `Twist3` vectors belonging to the group $\\mathbf{se}(3)$ for pose in 3-dimensions\n * `UnitDualQuaternion` maps to the group $\\mathbf{SE}(3)$ for position and orientation (pose) in 3-dimensions\n * `SE2` matrices belonging to the group $\\mathbf{SE}(2)$ for position and orientation (pose) in 2-dimensions\n * `SO2` matrices belonging to the group $\\mathbf{SO}(2)$ for orientation in 2-dimensions\n * `Twist2` vectors belonging to the group $\\mathbf{se}(2)$ for pose in 2-dimensions\n\n\nThese classes provide convenience and type safety, as well as methods and overloaded operators to support:\n\n * composition, using the `*` operator\n * point transformation, using the `*` operator\n * exponent, using the `**` operator\n * normalization\n * inversion\n * connection to the Lie algebra via matrix exponential and logarithm operations\n * conversion of orientation to/from Euler angles, roll-pitch-yaw angles and angle-axis forms.\n * list operations such as append, insert and get\n\nThese are layered over a set of base functions that perform many of the same operations but represent data explicitly in terms of `numpy` arrays.\n\nThe class, method and functions names largely mirror those of the MATLAB toolboxes, and the semantics are quite similar.\n\n![trplot](https://github.com/bdaiinstitute/spatialmath-python/raw/master/docs/figs/fig1.png)\n\n![animation video](./docs/figs/animate.gif)\n\n# Citing\n\nCheck out our ICRA 2021 paper on [IEEE Xplore](https://ieeexplore.ieee.org/document/9561366) or get the PDF from [Peter's website](https://bit.ly/icra_rtb).  This describes the [Robotics Toolbox for Python](https://github.com/petercorke/robotics-toolbox-python) as well Spatial Maths.\n\nIf the toolbox helped you in your research, please cite\n\n```\n@inproceedings{rtb,\n  title={Not your grandmother\u2019s toolbox--the Robotics Toolbox reinvented for Python},\n  author={Corke, Peter and Haviland, Jesse},\n  booktitle={2021 IEEE International Conference on Robotics and Automation (ICRA)},\n  pages={11357--11363},\n  year={2021},\n  organization={IEEE}\n}\n```\n\n<br>\n\n<a id='6'></a>\n\n## Using the Toolbox in your Open Source Code?\n\nIf you are using the Toolbox in your open source code, feel free to add our badge to your readme!\n\n[![Powered by the Spatial Math Toolbox](https://github.com/bdaiinstitute/spatialmath-python/raw/master/.github/svg/sm_powered.min.svg)](https://github.com/bdaiinstitute/spatialmath-python)\n\nSimply copy the following\n\n```\n[![Powered by the Spatial Math Toolbox](https://github.com/bdaiinstitute/spatialmath-python/raw/master/.github/svg/sm_powered.min.svg)](https://github.com/bdaiinstitute/spatialmath-python)\n```\n\n\n# Installation\n\n## Using pip\n\nInstall a snapshot from PyPI\n\n```\npip install spatialmath-python\n```\n\n## From GitHub\n\nInstall the current code base from GitHub and pip install a link to that cloned copy\n\n```\ngit clone https://github.com/bdaiinstitute/spatialmath-python.git\ncd spatialmath-python\npip install -e .\n# Optional: if you would like to contribute and commit code changes to the repository,\n# pre-commit install\n```\n\n## Dependencies\n\n`numpy`, `scipy`, `matplotlib`, `ffmpeg` (if rendering animations as a movie)\n\n# Examples\n\n\n## High-level classes\n\nThese classes abstract the low-level numpy arrays into objects that obey the rules associated with the mathematical groups SO(2), SE(2), SO(3), SE(3) as well as twists and quaternions.\n\nUsing classes ensures type safety, for example it stops us mixing a 2D homogeneous transformation with a 3D rotation matrix -- both of which are 3x3 matrices.  It also ensures that the internal matrix representation is always a valid member of the relevant group.\n\nFor example, to create an object representing a rotation of 0.3 radians about the x-axis is simply\n\n```python\n>>> from spatialmath import SO3, SE3\n>>> R1 = SO3.Rx(0.3)\n>>> R1\n   1         0         0          \n   0         0.955336 -0.29552    \n   0         0.29552   0.955336         \n```\nwhile a rotation of 30 deg about the z-axis is\n\n```python\n>>> R2 = SO3.Rz(30, 'deg')\n>>> R2\n   0.866025 -0.5       0          \n   0.5       0.866025  0          \n   0         0         1    \n```\nand the composition of these two rotations is \n\n```python\n>>> R = R1 * R2\n   0.866025 -0.5       0          \n   0.433013  0.75     -0.5        \n   0.25      0.433013  0.866025 \n```\n\nWe can find the corresponding Euler angles (in radians)\n\n```python\n>> R.eul()\narray([-1.57079633,  0.52359878,  2.0943951 ])\n```\n\nFrequently in robotics we want a sequence, a trajectory, of rotation matrices or poses. These pose classes inherit capability from the `list` class\n\n```python\n>>> R = SO3()   # the null rotation or identity matrix\n>>> R.append(R1)\n>>> R.append(R2)\n>>> len(R)\n 3\n>>> R[1]\n   1         0         0          \n   0         0.955336 -0.29552    \n   0         0.29552   0.955336             \n```\nand this can be used in `for` loops and list comprehensions.\n\nAn alternative way of constructing this would be (`R1`, `R2` defined above)\n\n```python\n>>> R = SO3( [ SO3(), R1, R2 ] )       \n>>> len(R)\n 3\n```\n\nMany of the constructors such as `.Rx`, `.Ry` and `.Rz` support vectorization\n\n```python\n>>> R = SO3.Rx( np.arange(0, 2*np.pi, 0.2))\n>>> len(R)\n 32\n```\nwhich has created, in a single line, a list of rotation matrices.\n\nVectorization also applies to the operators, for instance\n\n```python\n>>> A = R * SO3.Ry(0.5)\n>>> len(R)\n 32\n```\nwill produce a result where each element is the product of each element of the left-hand side with the right-hand side, ie. `R[i] * SO3.Ry(0.5)`.\n\nSimilarly\n\n```python\n>>> A = SO3.Ry(0.5) * R \n>>> len(R)\n 32\n```\nwill produce a result where each element is the product of the left-hand side with each element of the right-hand side , ie. `SO3.Ry(0.5) * R[i] `.\n\nFinally\n\n```python\n>>> A = R * R \n>>> len(R)\n 32\n```\nwill produce a result where each element is the product of each element of the left-hand side with each element of the right-hand side , ie. `R[i] * R[i] `.\n\nThe underlying representation of these classes is a numpy matrix, but the class ensures that the structure of that matrix is valid for the particular group represented: SO(2), SE(2), SO(3), SE(3).  Any operation that is not valid for the group will return a matrix rather than a pose class, for example\n\n```python\n>>> SO3.Rx(0.3) * 2\narray([[ 2.        ,  0.        ,  0.        ],\n       [ 0.        ,  1.91067298, -0.59104041],\n       [ 0.        ,  0.59104041,  1.91067298]])\n\n>>> SO3.Rx(0.3) - 1\narray([[ 0.        , -1.        , -1.        ],\n       [-1.        , -0.04466351, -1.29552021],\n       [-1.        , -0.70447979, -0.04466351]])\n```\n\nWe can print and plot these objects as well\n\n```\n>>> T = SE3(1,2,3) * SE3.Rx(30, 'deg')\n>>> T.print()\n   1         0         0         1          \n   0         0.866025 -0.5       2          \n   0         0.5       0.866025  3          \n   0         0         0         1          \n\n>>> T.printline()\nt =        1,        2,        3; rpy/zyx =       30,        0,        0 deg\n\n>>> T.plot()\n```\n\n![trplot](https://github.com/bdaiinstitute/spatialmath-python/raw/master/docs/figs/fig1.png)\n\n`printline` is a compact single line format for tabular listing, whereas `print` shows the underlying matrix and for consoles that support it, it is colorised, with rotational elements in red and translational elements in blue.\n\nFor more detail checkout the shipped Python notebooks:\n\n* [gentle introduction](https://github.com/bdaiinstitute/spatialmath-python/blob/master/notebooks/gentle-introduction.ipynb)\n* [deeper introduction](https://github.com/bdaiinstitute/spatialmath-python/blob/master/notebooks/introduction.ipynb)\n\n\nYou can browse it statically through the links above, or clone the toolbox and run them interactively using [Jupyter](https://jupyter.org) or [JupyterLab](https://jupyter.org).\n\n\n## Low-level spatial math\n\n\nImport the low-level transform functions\n\n```\n>>> from spatialmath.base import *\n```\n\nWe can create a 3D rotation matrix\n\n```\n>>> rotx(0.3)\narray([[ 1.        ,  0.        ,  0.        ],\n       [ 0.        ,  0.95533649, -0.29552021],\n       [ 0.        ,  0.29552021,  0.95533649]])\n\n>>> rotx(30, unit='deg')\narray([[ 1.       ,  0.       ,  0.       ],\n       [ 0.       ,  0.8660254, -0.5      ],\n       [ 0.       ,  0.5      ,  0.8660254]])\n```\nThe results are `numpy` arrays so to perform matrix multiplication you need to use the `@` operator, for example\n\n```\nrotx(0.3) @ roty(0.2)\n```\n\nWe also support multiple ways of passing vector information to functions that require it:\n\n* as separate positional arguments\n\n```\ntransl2(1, 2)\narray([[1., 0., 1.],\n       [0., 1., 2.],\n       [0., 0., 1.]])\n```\n\n* as a list or a tuple\n\n```\ntransl2( [1,2] )\narray([[1., 0., 1.],\n       [0., 1., 2.],\n       [0., 0., 1.]])\n\ntransl2( (1,2) )\nOut[444]: \narray([[1., 0., 1.],\n       [0., 1., 2.],\n       [0., 0., 1.]])\n```\n\n* or as a `numpy` array\n\n```\ntransl2( np.array([1,2]) )\nOut[445]: \narray([[1., 0., 1.],\n       [0., 1., 2.],\n       [0., 0., 1.]])\n```\n\n\nThere is a single module that deals with quaternions, unit or not, and the representation is a `numpy` array of four elements.  As above, functions can accept the `numpy` array, a list, dict or `numpy` row or column vectors.\n\n```\n>>> from spatialmath.base.quaternion import *\n>>> q = qqmul([1,2,3,4], [5,6,7,8])\n>>> q\narray([-60,  12,  30,  24])\n>>> qprint(q)\n-60.000000 < 12.000000, 30.000000, 24.000000 >\n>>> qnorm(q)\n72.24956747275377\n```\n\n## Graphics\n\n![trplot](https://github.com/bdaiinstitute/spatialmath-python/raw/master/docs/figs/transforms3d.png)\n\nThe functions support various plotting styles\n\n```\ntrplot( transl(1,2,3), frame='A', rviz=True, width=1, dims=[0, 10, 0, 10, 0, 10])\ntrplot( transl(3,1, 2), color='red', width=3, frame='B')\ntrplot( transl(4, 3, 1)@trotx(math.pi/3), color='green', frame='c', dims=[0,4,0,4,0,4])\n```\n\nAnimation is straightforward\n\n```\ntranimate(transl(4, 3, 4)@trotx(2)@troty(-2), frame='A', arrow=False, dims=[0, 5], nframes=200)\n```\n\nand it can be saved to a file by\n\n```\ntranimate(transl(4, 3, 4)@trotx(2)@troty(-2), frame='A', arrow=False, dims=[0, 5], nframes=200, movie='out.mp4')\n```\n\n![animation video](./docs/figs/animate.gif)\n\nAt the moment we can only save as an MP4, but the following incantation will covert that to an animated GIF for embedding in web pages\n\n```\nffmpeg -i out -r 20 -vf \"fps=10,scale=640:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse\" out.gif\n```\n\nFor use in a Jupyter notebook, or on Colab, you can display an animation by\n```\nfrom IPython.core.display import HTML\nHTML(tranimate(transl(4, 3, 4)@trotx(2)@troty(-2), frame='A', arrow=False, dims=[0, 5], nframes=200, movie=True))\n```\nThe `movie=True` option causes `tranimate` to output an HTML5 fragment which\nis displayed inline by the `HTML` function.\n\n## Symbolic support\n\nSome functions have support for symbolic variables, for example\n\n```\nimport sympy\n\ntheta = sym.symbols('theta')\nprint(rotx(theta))\n[[1 0 0]\n [0 cos(theta) -sin(theta)]\n [0 sin(theta) cos(theta)]]\n```\n\nThe resulting `numpy` array is an array of symbolic objects not numbers &ndash; the constants are also symbolic objects.  You can read the elements of the matrix\n\n```\na = T[0,0]\n\na\nOut[258]: 1\n\ntype(a)\nOut[259]: int\n\na = T[1,1]\na\nOut[256]: \ncos(theta)\ntype(a)\nOut[255]: cos\n```\nWe see that the symbolic constants are converted back to Python numeric types on read.\n\nSimilarly when we assign an element or slice of the symbolic matrix to a numeric value, they are converted to symbolic constants on the way in.\n\n## History & Contributors\n\nThis package was originally created by [Peter Corke](https://github.com/petercorke) and [Jesse Haviland](https://github.com/jhavl) and was inspired by the [Spatial Math Toolbox for MATLAB](https://github.com/petercorke/spatialmath-matlab).  It supports the textbook [Robotics, Vision & Control in Python 3e](https://github.com/petercorke/RVC3-python).\n\nThe package is now a collaboration with [Boston Dynamics AI Institute](https://theaiinstitute.com/).\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Provides spatial maths capability for Python",
    "version": "1.1.9",
    "project_urls": {
        "Bug Tracker": "https://github.com/bdaiinstitute/spatialmath-python/issues",
        "Documentation": "https://bdaiinstitute.github.io/spatialmath-python/",
        "Homepage": "https://github.com/bdaiinstitute/spatialmath-python",
        "Source": "https://github.com/bdaiinstitute/spatialmath-python"
    },
    "split_keywords": [
        "spatial-math",
        "spatial math",
        "so2",
        "se2",
        "so3",
        "se3",
        "so(2)",
        "se(2)",
        "so(3)",
        "se(3)",
        "twist",
        "product of exponential",
        "translation",
        "orientation",
        "angle-axis",
        "lie group",
        "skew symmetric matrix",
        "pose",
        "translation",
        "rotation matrix",
        "rigid body transform",
        "homogeneous transformation",
        "euler angles",
        "roll-pitch-yaw angles",
        "quaternion",
        "unit-quaternion",
        "robotics",
        "robot vision",
        "computer vision"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37dadbc5d7b7716ac856a2afac51069c547c8cbb340d96fb9d73a3d1f478075d",
                "md5": "3891681618250621ceadd4f6bee41c0f",
                "sha256": "ab930a02be88af8b68009548a7463ef3c3db9d1d695fbe7a4c6eb7eae3cc1095"
            },
            "downloads": -1,
            "filename": "spatialmath_python-1.1.9-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3891681618250621ceadd4f6bee41c0f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 184868,
            "upload_time": "2024-01-03T17:06:46",
            "upload_time_iso_8601": "2024-01-03T17:06:46.819464Z",
            "url": "https://files.pythonhosted.org/packages/37/da/dbc5d7b7716ac856a2afac51069c547c8cbb340d96fb9d73a3d1f478075d/spatialmath_python-1.1.9-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f44059d3d26abc7401a6a0b20bca5cd464598a33af0d3e3a9a6a1155c348fee3",
                "md5": "aeb214c53155e0830e7e8a00e1761311",
                "sha256": "1167ed3ee7b40b75fbf419b5878102eee9989c503f1c3862e78e8b358fb23888"
            },
            "downloads": -1,
            "filename": "spatialmath-python-1.1.9.tar.gz",
            "has_sig": false,
            "md5_digest": "aeb214c53155e0830e7e8a00e1761311",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 193009,
            "upload_time": "2024-01-03T17:06:44",
            "upload_time_iso_8601": "2024-01-03T17:06:44.411280Z",
            "url": "https://files.pythonhosted.org/packages/f4/40/59d3d26abc7401a6a0b20bca5cd464598a33af0d3e3a9a6a1155c348fee3/spatialmath-python-1.1.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-03 17:06:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "bdaiinstitute",
    "github_project": "spatialmath-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "spatialmath-python"
}
        
Elapsed time: 0.16283s