-
Notifications
You must be signed in to change notification settings - Fork 97
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
RealSense D435搭載モデルに対応 #164
Conversation
gazeboを起動したときrealsenseのdaeファイルが読み込まれませんでした。 もしかしたら、IGN_GAZEBO_RESOURCE_PATHにrealsense2_descriptionのパスを追加しなければならない可能性あります。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
見ました。良いと思います。
1箇所だけ修正お願いします。
@@ -51,6 +58,7 @@ def generate_launch_description(): | |||
description_loader = RobotDescriptionLoader() | |||
description_loader.port_name = LaunchConfiguration('port_name') | |||
description_loader.baudrate = LaunchConfiguration('baudrate') | |||
description_loader.use_d435 = LaunchConfiguration('use_d435') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
今回は対応しませんが、demo.launch.pyで生成されるrobot_descriptionと
example.launch.pyで生成されるrobot_descriptionが別物になるので、注意が必要です。
サンプルのmove_groupノードが扱うrobot_descriptionはカメラなしのものになります。
ただ、実運用ではtf2を使ってrobot_descriptionトピックをもとに座標変換するので
カメラ画像から目標位置を参照するような実装においては特に問題発生しないです。
exampleノードがrobot_descriptionトピックをsubscribeできれば解決するかもしれませんが、
作業優先度は低いです。
Co-authored-by: Shota Aoki <s.aoki@rt-net.jp>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
What does this implement/fix?
RealSense D435搭載モデルに対応するためにdemo.launch起動時の引数
use_d435
を追加しました。use_d435:=true
時にRealSenseが起動し、ロボットモデルにcamera_linkが追加されます。Does this close any currently open issues?
しません
How has this been tested?
下記コマンドを実行してRealSenseの起動とロボットモデルにcamera_linkが追加、RVizで点群が可視化されることを確認しています。
Gazeboでのカメラのシミュレーションは未対応のためモデルとフレームだけ追加されます。
Any other comments?
Checklists