This repository contains a C++ static library for implementing the forward and inverse kinematics of a three-tube concentric tube robot (CTR) based on the Cosserat Theory-based kinematic model as described in the paper:
[1] D. C. Rucker, B. A. Jones, and R. J. Webster III, “A Geometrically Exact Model for Externally Loaded Concentric-Tube Continuum Robots,” IEEE Trans. Robot., vol. 26, no. 5, pp. 769–780, Oct. 2010, doi: 10.1109/TRO.2010.2062570.
This C++ static library provides a barebone implementation of the forward and inverse kinematics of a three-tube concentric tube robot based on the Cosserat Theory-based kinematic model. As part of my PhD at Western University in London, Ontario, Canada, I have developed this C++ static library to provide a reliable and efficient implementation of the forward and inverse kinematics for a three-tube CTR. The library is based on the Cosserat Theory-based kinematic model as described in [1]. Concentric tube robots have applications in medical robotics and minimally invasive procedures.
- Implementation of the forward kinematics of a three-tube CTR.
- Implementation of the inverse kinematics of a three-tube CTR.
- Easy-to-use API for integrating the library into your C++ projects.
- Comprehensive documentation explaining the kinematic model and usage of the library.
To use this library, you can either clone the repository and build it from source as a CMAKE project (recommended) or download the precompiled binaries for your platform from the Releases section.
Before using the library, ensure that you have the following libraries installed in your system:
- Clone the repository:
git clone https://github.com/fcpedrosa/Concentric-Tube-Robot
- Build the library:
cd repo-name
mkdir build && cd build
cmake ..
make -j4
- The library will be built as a static library (
CTR.a
).
Download the precompiled binaries for your platform from the Releases section (TBA). Add the library to your C++ project's dependencies and include the appropriate header files.
For detailed documentation on the library's API and usage, please refer to the Documentation section.
The examples directory contains some usage examples to help you get started.
Contributions to this project are welcome! If you find any issues or have ideas for improvements, please open an issue or submit a pull request.
This project is licensed under the MIT License - see the LICENSE file for details.
For any questions or inquiries, feel free to contact me:
Filipe Pedrosa Email: fpedrosa@uwo.ca
Please note that this project is a research-oriented implementation and comes with no warranty or support. Use it at your own risk.