Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to get all results of inverse kinematic computation? #471

Open
Gian-Hacher opened this issue Jan 20, 2025 · 1 comment
Open

How to get all results of inverse kinematic computation? #471

Gian-Hacher opened this issue Jan 20, 2025 · 1 comment

Comments

@Gian-Hacher
Copy link

For one pose of the end effector, there may be more than one feasible configuration of the robot arm, but the function 'ik_xx' can only compute one of them. How to get all possible results through these functions?

@PhilFreeman
Copy link

The IK_xx functions are numerical methods to solve inverse kinematics. They converge on a single solution using gradient-decent-like methods. If you want to find "all" IK solutions (for certain manipulators and certain conditions there can be an infinite set of solutions) you can call the IK solver with multiple initial starting positions (q0) distributed across the configuration space. Each solver may find a solution. If there are a finite number of solutions, this will likely converge to that set of solutions. If there is an infinite set of solutions, the found solutions will lie on the self-motion manifold.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants