Why RRT planner doesn't reach the goal state?

3 ビュー (過去 30 日間)
Kseniya Kalita
Kseniya Kalita 2020 年 7 月 6 日
コメント済み: Kseniya Kalita 2020 年 7 月 7 日
Hello everyone,
It is about motion planning using RRT algorithm.
There are start and goal positions
start = [0.5, 0.5 0];
goal = [2.5, 0.2, 0];
could you please explain me why the red line doesn't reach the goal state exactly?
If to run programm in Matlab in SoInInfo it is indicated that the plan is found.

採用された回答

Cam Salzberger
Cam Salzberger 2020 年 7 月 6 日
Hello Kseniya,
The plannerRRTStar class has a GoalReachedFcn that checks if the state of one of the RRT nodes is sufficiently close to the goal to call it "complete". There needs to be some level of tolerance, since in the continuous state space, the robot will never exactly reach the goal. The default GoalReachedFcn is nav.algs.checkIfGoalIsReached, which uses a tolerance of 0.5 meters, and the chart shows the robot reaching within that tolerance.
If you want to use a more precise GoalReachedFcn, you can easily implement your own. The code in nav.algs.checkIfGoalIsReached is very simple, so it'd be easy to copy it and modify the tolerance distance to be smaller.
-Cam
  1 件のコメント
Kseniya Kalita
Kseniya Kalita 2020 年 7 月 7 日
Hello Sam,
I am really grateful for your understanding and fast answer. I am very new for robotics related topics, but with your answer now i understand it better, thank you so much!
Kseniya.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMotion Planning についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by