We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
使用robot_state_publisher发布机器人相关tf,便于其它任务使用tf,主要的frame包括base_link, yaw_link, pitch_link,camera,lidar .
robot_state_publisher
base_link
yaw_link
pitch_link
camera
lidar
实现步骤:
joint_states
多机器人会出现tf frame冲突问题,可采用两种方案:
frame_prefix
link_name
robot_name/link_name
\tf
\tf_static
暂时倾向于方案2,避免tf树过大影响性能,且更符合实际物理机器人的情况。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature request
Feature description
使用
robot_state_publisher
发布机器人相关tf,便于其它任务使用tf,主要的frame包括base_link
,yaw_link
,pitch_link
,camera
,lidar
.Implementation considerations
实现步骤:
joint_states
。robot_state_publisher
发布机器人相关tf,其中依赖机器人URDF文件以及关节角topicjoint_states
.多机器人会出现tf frame冲突问题,可采用两种方案:
robot_state_publisher
提供了frame_prefix
参数,可以为link_name
加上prefix,这里采用robot_name/link_name
形式。\tf
和\tf_static
进行remap操作,并增加namespace。(ros-planning/navigation2目前采取的方案)The text was updated successfully, but these errors were encountered: