-
Notifications
You must be signed in to change notification settings - Fork 0
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
[lane_planner]traffic_waypoint_arrayトピックの重複解消 #12
Comments
lane_plannerのREADMEで、 autoware_ai_planning/lane_planner/nodes/lane_select/lane_select_core.cpp Lines 620 to 637 in a955317
一方で、lane_stopは信号機が赤のときに速度がゼロになるようにウェイポイントを変換して 想定している原因は以下
上記の1であると仮定しての提案です |
|
トピック名の変更はremapで対応可能なためoutdoor_navigation_toolsで対応します |
下記コールバックがほぼ毎回呼ばれており、
previous_number == -1
になる→これまでに通った経路を無視して常に一番近い点を出力するautoware_ai_planning/lane_planner/nodes/lane_select/lane_select_core.cpp
Lines 620 to 637 in f4633fb
/traffic_waypoints_array
は/lane_rule
が最初に一回、/lane_stop
が10Hzでパブリッシュしている実装を見る限り「レーンが変化したらprevious_numberを-1にして初期化」したそう。
/lane_rule
ノードからトピックを受け取る想定と思われる。/traffic_waypoint_array
でトピック名が重複して誤動作している可能性あり。Originally posted by @nyxrobotics in #10 (comment)
The text was updated successfully, but these errors were encountered: