You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The PosePublisher system has a parameter for publishing the pose of the model that contains the plugin. This parameter is called publish_nested_model_pose:
/// - `<publish_model_pose>`: Set to true to publish model pose.
/// - `<publish_nested_model_pose>`: Set to true to publish nested model
/// pose. The pose of the model that contains this system is also published
/// unless publish_model_pose is set to false
However, anyone familiar with nested models in SDFormat would expect that the parameter is referring to publishing the pose of child (nested) models inside the model that contains the PosePublisher plugin.
I actually think this feature was a bug, but it has been used in many places, e.g. SubT, to provide ground truth. I propose we add a new parameter that allows just publishing the model's absolute pose (as opposed to relative to another parent model if it's nested) since that seems something a lot of users need (gazebosim/ros_gz#172, gazebosim/ros_gz#410).
Extra context: #1342 added <publish_model_pose> that would allow users to disable publishing the pose of the top level model. i.e, if publish_model_pose=false and publish_nested_model_pose=true, the PosePublisher only publishes the child (nested) model poses.
The text was updated successfully, but these errors were encountered:
The
PosePublisher
system has a parameter for publishing the pose of the model that contains the plugin. This parameter is calledpublish_nested_model_pose
:gz-sim/src/systems/pose_publisher/PosePublisher.hh
Lines 46 to 49 in 633ce72
However, anyone familiar with nested models in SDFormat would expect that the parameter is referring to publishing the pose of child (nested) models inside the model that contains the
PosePublisher
plugin.I actually think this feature was a bug, but it has been used in many places, e.g. SubT, to provide ground truth. I propose we add a new parameter that allows just publishing the model's absolute pose (as opposed to relative to another parent model if it's nested) since that seems something a lot of users need (gazebosim/ros_gz#172, gazebosim/ros_gz#410).
Extra context:
#1342 added
<publish_model_pose>
that would allow users to disable publishing the pose of the top level model. i.e, ifpublish_model_pose=false
andpublish_nested_model_pose=true
, the PosePublisher only publishes the child (nested) model poses.The text was updated successfully, but these errors were encountered: