Motion planning is the task of finding a continuous, collision free, path for an robot (entity) through a workspace that may contains obstacle, or reporting that no such path exists.
1
vote
1answer
33 views
Random Config Generation for RRT
I am writing code for Rapidly exploring trees for robotic arm movement. I have two doubts
i) what is the distance metric that I have to use to find the nearest node in the graph? If it is ...
0
votes
1answer
153 views
Map exploration/path planning for multiple robots (no obstacles)
can anyone lead me to a map exploration/path planning paper/algorithm/website for my problem:
We have 3 robots, which shall explore a 2D map, e.g. they drive over the ground while taking photos of ...
0
votes
2answers
156 views
path planning - multiple destinations
The problem is this:
I have a graph G=(V,E). a subgroup of vertices U<=V, and a start vertex s. weight function w for the edges.
I need to find the shortest path from 's' that passes through all ...
0
votes
0answers
158 views
Finding heuristic and Identifying Traveling Salesman like algorithm (With some changes)
I need a heuristic for the Traveling Salesman Problem with the below changes:
• We need to visit only a subset of V (There is given a subset of V that we must visit). V=Cities.
• We does not ...
3
votes
1answer
337 views
rapid exploring random trees
http://msl.cs.uiuc.edu/rrt/
Can anyone explain how rrt works with simple wording that is easy to understand?
I read the description in the site and in wikipedia.
What I would like to see, is a short ...
1
vote
1answer
127 views
Great resources for learning more about path planning?
What are some good resources (books, PDFs, websites) for researching different path planning algorithms?
After failing to be able to select a senior project I got talked into one involving path ...
5
votes
4answers
409 views
Algorithm for RC car
I'm looking for an algorithm, and I have no idea where to start!
I'm trying to get from point A to point B in a cartesian graph. Movement is restricted to that of a RC car: backward, forward, ...
1
vote
1answer
693 views
Player/Stage Path Planning
So I have map and config files that represent the world in which my robot is going to be trying to get through. My robot has to get from the top left corner to the bottom right corner of the map ...
3
votes
3answers
698 views
How to avoid that the robot gets trapped in local minimum?
I have some time occupying myself with motion planning for robots, and have for some time wanted to explore the possibility of improving the opportunities as "potential field" method offers. My ...
8
votes
4answers
564 views
What's a good Robotics Simulator? [closed]
So I'm currently doing some robotics research, and we have a custom built arm in the lab that we would like to simulate. I've done a little googling and wikipedia searching, and there seems to be a ...
4
votes
4answers
290 views
Motion planning without a graph across an infinite plane
An object is positioned at A and wants to move to B. I want to calculate a movement vector there that doesn't move within the distance D of the to-be-avoided points in array C.
So if the move vector ...