Show EOL distros: 

pr2_kinematics: pr2_arm_kinematics

Package Summary

This package provides a kinematics implementation for the PR2 robot. It can be used to compute forward and inverse kinematics.

pr2_kinematics: pr2_arm_kinematics

Package Summary

This package provides a kinematics implementation for the PR2 robot. It can be used to compute forward and inverse kinematics.

Package Summary

This package provides a kinematics implementation for the PR2 robot. It can be used to compute forward and inverse kinematics.

  • Maintainer status: maintained
  • Maintainer: Devon Ash <dash AT clearpathrobotics DOT com>
  • Author: Sachin Chitta
  • License: BSD
pr2_kinematics: pr2_arm_kinematics

Package Summary

This package provides a kinematics implementation for the PR2 robot. It can be used to compute forward and inverse kinematics.

  • Maintainer status: unmaintained
  • Maintainer: ROS Orphaned Package Maintainers <ros-orphaned-packages AT googlegroups DOT com>
  • Author: Sachin Chitta
  • License: BSD
  • Source: git https://github.com/pr2/pr2_kinematics.git (branch: kinetic-devel)
pr2_kinematics: pr2_arm_kinematics

Package Summary

This package provides a kinematics implementation for the PR2 robot. It can be used to compute forward and inverse kinematics.

  • Maintainer status: unmaintained
  • Maintainer: ROS Orphaned Package Maintainers <ros-orphaned-packages AT googlegroups DOT com>
  • Author: Sachin Chitta
  • License: BSD
  • Source: git https://github.com/pr2/pr2_kinematics.git (branch: kinetic-devel)
pr2_kinematics: pr2_arm_kinematics

Package Summary

This package provides a kinematics implementation for the PR2 robot. It can be used to compute forward and inverse kinematics.

  • Maintainer status: unmaintained
  • Maintainer: ROS Orphaned Package Maintainers <ros-orphaned-packages AT googlegroups DOT com>
  • Author: Sachin Chitta
  • License: BSD
  • Source: git https://github.com/pr2/pr2_kinematics.git (branch: kinetic-devel)
pr2_kinematics: pr2_arm_kinematics

Package Summary

This package provides a kinematics implementation for the PR2 robot. It can be used to compute forward and inverse kinematics.

  • Maintainer status: unmaintained
  • Maintainer: ROS Orphaned Package Maintainers <ros-orphaned-packages AT googlegroups DOT com>
  • Author: Sachin Chitta
  • License: BSD
  • Source: git https://github.com/pr2/pr2_kinematics.git (branch: kinetic-devel)

Overview

The pr2_arm_kinematics package is a PR2 specific package that provides IK solutions for the PR2 robot arms. The recommended interface is through ROS. The node provides multiple interfaces (listed in the ROS API below) and can be used to compute the closest IK solution to an initial guess. More information on using this package can be found in the API documentation. Example code for using this package can be found in the pr2_kinematics tutorials.

ROS API

API Stability

  • ROS API is REVIEWED but UNSTABLE
  • C++ API is UNREVIEWED and UNSTABLE

Services Offered

pr2_arm_kinematics provides services for IK computation. It can be configured using ROS parameters. The ROS API is explained in greater detail below. To get a collision free version of this node, check out the pr2_arm_kinematics_constraint_aware package.

Services

node_namespace/get_ik (kinematics_msgs/GetPositionIK)
  • Compute the IK for a desired end-effector pose. The service call specifies the end-effector link name and a pose for this link. The request also includes a "hint" set of joint values that is used as a seed for the IK search. The returned IK solution is the closest to the seed solution (using an Euclidean metric) among the first set of found solutions.
node_namespace/get_fk (kinematics_msgs/GetPositionFK)
  • Compute the forward kinematics for a given set of joint positions.
node_namespace/get_ik_solver_info (kinematics_msgs/GetKinematicSolverInfo)
  • returns the set of joints that the kinematics node uses for computation. Also returns joint limit information and the set of links that the kinematics node can solve IK for.
node_namespace/get_fk_solver_info (kinematics_msgs/GetKinematicSolverInfo)
  • returns the set of joints that the kinematics node uses for FK computation. Also returns joint limit information and the set of links that the kinematics node can solve FK for.

ROS Parameter Configuration

Parameters

~free_angle (int, default: 2)
  • The joint number for the free parameter that is required for computing IK (since this is a 7 dof redundant manipulator). The specified value of this angle in the initial guess provided in the IKRequest message is used to seed the search for IK solutions. The current options for this parameter are 0 or 2. It will default to 2 if set to any other value.
~search_discretization (double, default: 0.01)
  • The discretization angle (in radians) for the free parameter to be used in the search that the ik node will perform to get back a solution.
~root_name (string, default: torso_lift_link)
  • The name of the link that corresponds to the torso lift link. This is the root of the chain for the arm.
~tip_name (string, default: r_wrist_roll_link)
  • The name of the tip link for the arm. This is the link that corresponds to the last joint axis of the arm chain (excluding the end-effector).

Tutorials

Tutorials for this package can be found in the pr2_kinematics stack tutorials.

Wiki: pr2_arm_kinematics (last edited 2010-03-12 12:31:14 by SachinChitta)