Difference between revisions of "Path Planning Systems"

From RoboJackets Wiki
Jump to navigation Jump to search
m (People: Changed name.)
m (Text replacement - "Category: IGVC 2008" to "Category:2008-2009")
 
(10 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
The "Path Planning Systems" groups is responsible for find an optimal path through the environment, given a model of the environment from the data (provided by [[Data Filtering Systems]] group). This group will be developing the high-level code to control Candii during the autonomous and GPS waypoint navigation challenges--essentially, Candii's AI. Path planning algorithms, maps, and learning are the main focus points of this group.
 
The "Path Planning Systems" groups is responsible for find an optimal path through the environment, given a model of the environment from the data (provided by [[Data Filtering Systems]] group). This group will be developing the high-level code to control Candii during the autonomous and GPS waypoint navigation challenges--essentially, Candii's AI. Path planning algorithms, maps, and learning are the main focus points of this group.
 +
 +
[[Image:igvcpp.png|thumb|right|480px|Path Planning Systems Architecture]]
  
 
== People ==
 
== People ==
Line 13: Line 15:
 
* IGVC Work Day
 
* IGVC Work Day
 
** Saturday, 2-6pm, Tin Building
 
** Saturday, 2-6pm, Tin Building
 +
 +
== TODO List ==
 +
 +
* [ ] Week of January 28, 2008
 +
** [ ] MATLAB
 +
*** [ ] Vectorization
 +
*** [ ] Splines
 +
** [ ] C
 +
*** [ ] Matrices/Vectors
 +
**** [ ] MTL http://osl.iu.edu/research/mtl/
 +
**** [ ] Meschach http://www.math.uiowa.edu/~dstewart/meschach/
 +
**** [ ] FLENS http://flens.sourceforge.net/
 +
*** [ ] Data Structures
 +
**** [ ] Stack
 +
**** [ ] Occupancy Grid
 +
***** [ ] Grid Point
  
 
== Task List ==
 
== Task List ==
* [ ] Path planning algorithms
+
* [ ] Path Planning
** [ ] Determine (research) relevant algorithms
+
** [x] Dijkstra's algorithm
*** [ ] for autonomous navigation challenge
+
** [ ] Gradient traversal
*** [ ] for GPS waypoint navigation challenge
+
*** [x] manhatten distance
** [ ] Add relevant resources to the "Resources" section.
+
*** [x] vector addition
* [ ] Maps
+
*** [ ] splines
** [ ] Determine best type of map
+
** [ ] A* algorithm
** [ ] Coordinate with [[Data Filtering Systems]] group
+
** [ ] D* algorithm
* [ ] Machine learning
+
* [ ] Cost Map
** [ ] Algorithms for learning
+
** [x] Sweeping Algorithm
** [ ] Evaluating effectiveness of cost function
+
*** [x] implement manhattan distance
* [ ] Simulation
+
*** [x] implement geometric approximation
** [ ] Create MATLAB/C++ simulation base for testing
+
*** [x] add obstacles
 +
*** [x] add variable start/goal locations
 +
** [ ] Obstacle Avoidance
 +
*** [ ] using sweeping algorithm
 +
*** [ ] using depth-limited sweep
 +
* [ ] Implementation
 +
** [ ] Matlab Prototype
 +
** [ ] C/C++ Product
  
 
== Resources ==
 
== Resources ==
Line 33: Line 58:
 
* "Planning Algorithms" by Steven M. LaValle
 
* "Planning Algorithms" by Steven M. LaValle
 
** http://planning.cs.uiuc.edu
 
** http://planning.cs.uiuc.edu
** [[User:JinL|Jin]] has a hard copy.
+
** [[User:JinL|Jin Joo]] has a hard copy.
 
* "Probabilistic Robotics" by Sebastian Thurn, Wolfram Burgard, Dieter Fox
 
* "Probabilistic Robotics" by Sebastian Thurn, Wolfram Burgard, Dieter Fox
 
** [[User:JeanPierreDLC|JP]] has a hard copy.
 
** [[User:JeanPierreDLC|JP]] has a hard copy.
* "Artificial Intelligence - A Modern Approach" by Peter Russel and Stuart Norvig
+
 
** [[User:JeanPierreDLC|JP]] has a hard copy.
 
 
=== Articles ===
 
=== Articles ===
 
* IEEE Xplore
 
* IEEE Xplore
Line 51: Line 75:
 
* Hassouna, Abdel-Hakim, Farag. "Robust Robotic Path Planning Using Level Sets." Proc. IEEE ICIP, pp 473-476, 2005.
 
* Hassouna, Abdel-Hakim, Farag. "Robust Robotic Path Planning Using Level Sets." Proc. IEEE ICIP, pp 473-476, 2005.
 
**http://www.cs.dartmouth.edu/~brd/papers/siggraph/animation.pdf
 
**http://www.cs.dartmouth.edu/~brd/papers/siggraph/animation.pdf
 +
 +
[[Category: IGVC]][[Category:2008-2009]]

Latest revision as of 22:05, 18 July 2018

The "Path Planning Systems" groups is responsible for find an optimal path through the environment, given a model of the environment from the data (provided by Data Filtering Systems group). This group will be developing the high-level code to control Candii during the autonomous and GPS waypoint navigation challenges--essentially, Candii's AI. Path planning algorithms, maps, and learning are the main focus points of this group.

Path Planning Systems Architecture

People

Meetings

  • IGVC Planning Day
    • Tuesday, 6-7pm, Tin Building
  • Path Planning Meeting (with Dr. Vela)
    • Friday, 1pm, Van Leer (VL) E368
  • IGVC Work Day
    • Saturday, 2-6pm, Tin Building

TODO List

Task List

  • [ ] Path Planning
    • [x] Dijkstra's algorithm
    • [ ] Gradient traversal
      • [x] manhatten distance
      • [x] vector addition
      • [ ] splines
    • [ ] A* algorithm
    • [ ] D* algorithm
  • [ ] Cost Map
    • [x] Sweeping Algorithm
      • [x] implement manhattan distance
      • [x] implement geometric approximation
      • [x] add obstacles
      • [x] add variable start/goal locations
    • [ ] Obstacle Avoidance
      • [ ] using sweeping algorithm
      • [ ] using depth-limited sweep
  • [ ] Implementation
    • [ ] Matlab Prototype
    • [ ] C/C++ Product

Resources

Books

  • "Planning Algorithms" by Steven M. LaValle
  • "Probabilistic Robotics" by Sebastian Thurn, Wolfram Burgard, Dieter Fox
    • JP has a hard copy.

Articles