Skip to main content

Python Toolbox for Robotics

Project description

Python Toolbox for Robotics

Usage

Installation

pip install pybotics

Quick Start

import numpy as np
import pybotics as pybot

# classic planar robot from textbooks
robot_model = np.array([
    [0, 0, 0, 0],
    [0, 10, 0, 0],
    [0, 20, 0, 0]
], dtype=np.float)
planar_robot = pybot.Robot(robot_model)
planar_robot.joint_angles = np.deg2rad([30, 60, 0])
pose = planar_robot.fk() # forward kinematics, returns 4x4 pose transform

# modern, collaborative, 6-axis robot (UR10 from Universal Robots)
robot_model = np.loadtxt('ur10-mdh.csv', delimiter=',')
ur10_robot = pybot.Robot(robot_model)
ur10_robot.random_joints()
pose = ur10_robot.fk() # forward kinematics, returns 4x4 pose transform

Applications

  • Kinematics

  • Calibration

  • Trajectory and path planning

Development

  • All branches are deployed to PyPI’s Test Site

  • Only tags on the master branch are deployed to PyPI

References

  • Craig, John J. Introduction to robotics: mechanics and control. Vol. 3. Upper Saddle River: Pearson Prentice Hall, 2005.

  • Corke, Peter. Robotics, vision and control: fundamental algorithms in MATLAB. Vol. 73. Springer, 2011.

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

pybotics-0.3.2.tar.gz (8.5 kB view details)

Uploaded Source

File details

Details for the file pybotics-0.3.2.tar.gz.

File metadata

  • Download URL: pybotics-0.3.2.tar.gz
  • Upload date:
  • Size: 8.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pybotics-0.3.2.tar.gz
Algorithm Hash digest
SHA256 e32d524702f55e1b76f16a41ceff008914768913d9cb732b36357f4451b19c7c
MD5 9a809cd63a9df97b75de0a312004f5a1
BLAKE2b-256 1b4b188047da09800fea64e9650526d4687563cafffabfd457596b4460a6f6a8

See more details on using hashes here.

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