Transformations
Frame hopping.
TF2
tf-remapping
publish-static-transforms
Last updated
Was this helpful?
Frame hopping.
Last updated
Was this helpful?
Was this helpful?
<launch>
<!--tf remmapper node-->
<node pkg="tf" type="tf_remap" name="tf_remapper" output="screen">
<rosparam param="mappings">
[{old: /imu, new: /base_link}]
</rosparam>
</node>
<!--node whose tf needs to be remapped-->
<node pkg="rosbag" type="play" name="player" args="/home/drive/test.bag">
<remap from="tf" to="tf_old" />
</node>
</launch><launch>
<node pkg="tf" type="static_transform_publisher" name="link1_broadcaster" args="1 0 0 0 0 0 1 link1_parent link1 100" />
</launch>