introduction.tex 1.3 KB

12345678910111213141516171819202122232425
  1. \chapter*{Introduction}
  2. When you want to develop a selfdriving car, you have to plan which path
  3. it should take. A reasonable choice for the representation of
  4. paths are cubic splines. You also have to be able to calculate
  5. how to steer to get or to remain on a path. A way to do this
  6. is applying the \href{https://en.wikipedia.org/wiki/PID_algorithm}{PID algorithm}.
  7. This algorithm needs to know the signed current error. So you need to
  8. be able to get the minimal distance of a point to a cubic spline combined with the direction (left or right).
  9. As you need to get the signed error (and one steering direction might
  10. be prefered), it is not only necessary to
  11. get the minimal absolute distance, but might also help to get all points
  12. on the spline with minimal distance.
  13. In this paper I want to discuss how to find all points on a cubic
  14. function with minimal distance to a given point.
  15. As other representations of paths might be easier to understand and
  16. to implement, I will also cover the problem of finding the minimal
  17. distance of a point to a polynomial of degree 0, 1 and 2.
  18. While I analyzed this problem, I've got interested in variations
  19. of the underlying PID-related problem. So I will try to give
  20. robust and easy-to-implement algorithms to calculated the distance
  21. of a point to a (piecewise or global) defined polynomial function
  22. of degree $\leq 3$.