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 following function on line 938 in tf2_geometry_msgs.h outputs frame transform t_out by applying transform on input transform t_in. void doTransform(const geometry_msgs::TransformStamped& t_in, geometry_msgs::TransformStamped& t_out, const geometry_msgs::TransformStamped& transform)
The output represents the transform, and therefore, by definition it should indicate both frame_id and child_frame_id of the transform. However, the function only sets the frame_id equal to transform.header.frame_id. I think, it should also set its child_frame_id equal to t_in.child_frame_id.
Can you please confirm if my above understanding is reasonable? If not, I would really appreciate if you could explain why child_frame_id is not required.
Thank you!
The text was updated successfully, but these errors were encountered:
ooeygui
pushed a commit
to ms-iot/geometry2
that referenced
this issue
Oct 12, 2022
The following function on line 938 in tf2_geometry_msgs.h outputs frame transform
t_out
by applyingtransform
on input transformt_in
.void doTransform(const geometry_msgs::TransformStamped& t_in, geometry_msgs::TransformStamped& t_out, const geometry_msgs::TransformStamped& transform)
The output represents the transform, and therefore, by definition it should indicate both frame_id and child_frame_id of the transform. However, the function only sets the frame_id equal to
transform.header.frame_id
. I think, it should also set its child_frame_id equal tot_in.child_frame_id
.Can you please confirm if my above understanding is reasonable? If not, I would really appreciate if you could explain why child_frame_id is not required.
Thank you!
The text was updated successfully, but these errors were encountered: