Skip to main content

C++ implementation with Python bindings of analytic forward and inverse kinematics for the Universal Robots.

Project description

UR Analytic IK

C++ implementation with Python bindings of analytic forward and inverse kinematics for the Universal Robots based on Alternative Inverse Kinematic Solution of the UR5 Robotic Arm.

This project is still very experimental, the API will likely still change.

The main advantages of using analytic IK:

  • extremely fast. FK calls from python take +- 4 µs, IK calls +- 18 µs.
  • finds all solutions at once, allowing you to select the most convenient one.
  • no need to provide initial guess, as opposed to numerical IK solutions.

Warning: this repo uses the default DH-parameters for the UR robots. But every robot is slightly different and is factory-calibrated to provide very accurate DH parameters, which are also used by the robot controlbox. From a few tests we have run, using the default DH-parameters typically results in 1-2mm differences in the FK for a given joint configuration. See here for details. If you need very high precision, you might want to use your robot's DH-parameters for FK/IK.

Installation

pre-built wheels are availabe on PyPI and can be installed with pip:

pip install ur_analytic_ik

To install from source, see the Developer section.

Usage

Afterwards, you should be able to issue the FK and IK functions like this:

import numpy as np
from ur_analytic_ik import ur5e

eef_pose = np.identity(4)
X = np.array([-1.0, 0.0, 0.0])
Y = np.array([0.0, 1.0, 0.0])
Z = np.array([0.0, 0.0, -1.0])
top_down_orientation = np.column_stack([X, Y, Z])
translation = np.array([-0.2, -0.2, 0.2])

eef_pose[:3, :3] = top_down_orientation
eef_pose[:3, 3] = translation

solutions = ur5e.inverse_kinematics(eef_pose)

More examples:

import numpy as np
from ur_analytic_ik import ur3e

joints = np.zeros(6)
eef_pose = np.identity(4)
eef_pose[2, 3] = 0.4
tcp_transform = np.identity(4)
tcp_transform[2, 3] = 0.1

ur3e.forward_kinematics(0, 0, 0, 0, 0, 0)
ur3e.forward_kinematics(*joints)
tcp_pose = ur3e.forward_kinematics_with_tcp(*joints, tcp_transform)

joint_solutions = ur3e.inverse_kinematics(eef_pose)
joint_solutions = ur3e.inverse_kinematics_closest(eef_pose, *joints)
joint_solutions = ur3e.inverse_kinematics_with_tcp(eef_pose, tcp_transform)
joint_solutions = ur3e.inverse_kinematics_closest_with_tcp(eef_pose, tcp_transform, *joints)

Development

This codebase uses nanobind to provide python bindings for the FK/IK functions.

building

python package building

This is the easiest option. It leverages scikit-build to create a python package and build the bindings. This flow is based on https://github.com/wjakob/nanobind_example

  • Create a conda environment for the project: conda env create -f environment.yaml
  • to create the python package, including the bindings: pip install . (this uses scikit-build to build the C++ from the top-level CMakelist.txt)
  • you can now import the library in python.

C++ building

if you want to build the C++ code without building the bindings or creating a python package:

  • make sure you have a C++ compiler available.
  • make sure you have the Eigen package available, if not run apt install libeigen3-dev.

Some linux users have eigen installed at /usr/include/eigen3 instead of /usr/include/Eigen. Symlink it:

sudo ln -sf /usr/include/eigen3/Eigen /usr/include/Eigen
sudo ln -sf /usr/include/eigen3/unsupported /usr/include/unsupported
  • run cmake -S . -B & cmake --build build from the src/ dir.
  • execute ./build/main

testing

run pytest -v .

Tests are also automatically executed in github for each commit.

Wheels are built automatically for all PRs, you can check them on test PyPI.

Releasing

  • bump the version in the pyproject.toml file. We use semantic versioning. Use pre-releases if you want to test changes.
  • create a new tag, corresponding to the version: git tag vX.Y.Z-...
  • push the tag git push --tag, this will already trigger a build of the wheels on test PyPI
  • once you have verified the wheels work and are built properly, create a new release with the same name as the semantic version for the tag on github. This will trigger an upload to PyPI.

Welcome Improvements

Python API

Adding an IK function that returns the closest solution and accepts a TCP transform.

Reducing the amount of separate IK functions, e.g. replacing:

ur3e.inverse_kinematics_with_tcp(eef_pose)
# with
ur3e.inverse_kinematics(eef_pose, tcp=tcp_transform)

The same holds for functions ending with _closest().

Performance

Currently IK runs at about 10 μs / EEF pose on my laptop. However, before I implemented the filtering of the solutions, it was closer to 3 μs. Part of this is because I adapted the bindings in ur_analytic_ik_ext.cpp to return vectors with the solutions.

Code Quality

  • Adding more technical documentation.
  • ur_analytic_ik_ext.cpp should be made much more readable.
  • Reducing some duplication e.g. when defining the IK/FK functions and bindings for the different robots.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ur_analytic_ik-0.1.0.post3.tar.gz (34.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ur_analytic_ik-0.1.0.post3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

ur_analytic_ik-0.1.0.post3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ur_analytic_ik-0.1.0.post3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ur_analytic_ik-0.1.0.post3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

File details

Details for the file ur_analytic_ik-0.1.0.post3.tar.gz.

File metadata

  • Download URL: ur_analytic_ik-0.1.0.post3.tar.gz
  • Upload date:
  • Size: 34.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ur_analytic_ik-0.1.0.post3.tar.gz
Algorithm Hash digest
SHA256 fadaeead66b83523aa246622611d7a84b161a55f43cbb759d52abd03b568130e
MD5 7e196a7c655ecab27fc245518a97d6a4
BLAKE2b-256 8cb42280220df0839c0c2552180c7637dd49b7e56289d0ec56cb6a8004e99262

See more details on using hashes here.

Provenance

The following attestation bundles were made for ur_analytic_ik-0.1.0.post3.tar.gz:

Publisher: wheels.yml on Victorlouisdg/ur-analytic-ik

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ur_analytic_ik-0.1.0.post3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ur_analytic_ik-0.1.0.post3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 869dbb33a41d102b93df10dcd6ef463571fb61164c9e36bd1724c09a81e0d67a
MD5 0b48e415cec1fbb46ed03f08ac2ef767
BLAKE2b-256 e85743cd1d1b894cb1b28c11a54953416ea0544ad6dd415baa8519d3c342b328

See more details on using hashes here.

Provenance

The following attestation bundles were made for ur_analytic_ik-0.1.0.post3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on Victorlouisdg/ur-analytic-ik

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ur_analytic_ik-0.1.0.post3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ur_analytic_ik-0.1.0.post3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22763ec5aea54947b7a519dd14d2b81516f66938c04682735b0e0ee8d29e29d0
MD5 3c736da252c5739232bde75401e7d37d
BLAKE2b-256 3af6e228fcfb8ca0a6486e0dfb7e6503ae23987d6006381e027c36607dbafddb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ur_analytic_ik-0.1.0.post3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on Victorlouisdg/ur-analytic-ik

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ur_analytic_ik-0.1.0.post3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ur_analytic_ik-0.1.0.post3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6377042e2ed227f389ebf43ee8af65b199832382b143d04a19b41157c1f49796
MD5 7c8f433b0d3b81f44fdd513c1dedefbd
BLAKE2b-256 19221043c1caf3e3c06678da43e55d8f4e401d60f5709011d92cef2d0d34f172

See more details on using hashes here.

Provenance

The following attestation bundles were made for ur_analytic_ik-0.1.0.post3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on Victorlouisdg/ur-analytic-ik

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ur_analytic_ik-0.1.0.post3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ur_analytic_ik-0.1.0.post3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d30d75eb3269fe7ddde040a3af83126dc171ba2f74e7166f8f3e887a39186849
MD5 33b96b49e9072414b4f9ed7a4e0c8572
BLAKE2b-256 49104d24aecdcbb6e46e3216010233948b360e274539a2dc5f92dc9a9d9f111b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ur_analytic_ik-0.1.0.post3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on Victorlouisdg/ur-analytic-ik

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page