Skip to content
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

Backport tf multisensor fix #245

Conversation

playertr
Copy link
Contributor

@playertr playertr commented Oct 18, 2023

Resolves #244 : backports the changes to the tf buffer from ROS 2 to ROS 1, with the eventual goal of supporting multi-sensor online odometry.

This PR also changes a few minor bugs in the ROS 2 implementation:

  • Removes the default base frame from the launch file, which previously confounded the egocentric_estimation computation
  • Adds Sophus to the package.xml and CMakelists

Please check:

  • Memory correctness: the unique_ptr usage and move semantics are less idiomatic to ROS 1 than to ROS 2, but I think my implementation is legit
  • Default names: we use the absolute /kiss namespace preface for our topics, but it might be more idiomatic to just put these nodes in a Namespace group in the launch file

@playertr
Copy link
Contributor Author

I added this PR! Thank you for contributing the ROS 2 version of this, @nachovizzo . Hope I didn't work redundantly to anyone -- this addition was helpful for my work.

I actually still have a question about the intended usage of the base_frame, odom_frame , and publish_odom_tf parameters (which we should document in the README after sorting out, btw). I noticed that, in the bag I was developing in, the publish_odom_tf code was not having the intended effect.

Even though the transformBroadcaster was sending a transform, that transform was neglected by Rviz, presumably because the sensor frame of my vehicle had already been given a parent by another odometry system. For me, Rviz could not visualize the transform from kiss/odom to velodyne_points_frame. Given this possibility, should be publish the odom_frame as a child of the base link to prevent possible violating tf's DAG assumption?

ros/ros1/OdometryServer.cpp Show resolved Hide resolved
ros/ros1/OdometryServer.cpp Outdated Show resolved Hide resolved
roscpp
rosbag
std_msgs
tf2
tf2_ros)
tf2_ros
Sophus)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From this one, I'm not quite sure what is the "best" practice... KISS-ICP has its own, isolated and self-contained build system... This means that the only way you couldn't "link" against on of its dependencies is when you copy-paste by hand some source files.

On the other hand, if we add sophus here, then, we should also add eigen, TBB, etc...

Do you have a better idea for this?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmmm, that's a good question. I added the Sophus dependency because I got a linker error for Sophus when doing the following build process for ROS 1:

cd ~/catkin_ws/src
git clone https://github.com/PRBonn/kiss-icp
cd ~/catkin_ws
rosdep install --from-paths src --ignore-src -r -y
catkin build
# the compiler initially complained that Sophus could not be found
# but worked once I added the dependency to CMakeLists.txt and package.xml

I think that, because we explicitly include Sophus and Eigen headers in the OdometryServer code, we should have a dependency on these in package.xml and CMakeLists.txt. That way, if kiss-icp-cpp ever somehow removed its dependencies on these packages in the future (unlikely) then the ROS packages would still compile. It feels risky to include a dependency's dependency based on prior knowledge of the build process without explicitly adding it to the package.xml.

(I'm keen to know if there's a better way to do this too.)

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Linking error is unlikely since sophus is a header-only library. On the other hand, lets take for example tf2_ros, just because is the one above:
https://github.com/ros/geometry2/blob/309814fd7d55d874f9bac40b2cc8669a5b86f3c5/tf2_ros/CMakeLists.txt#L9

We don't need to include actionlib as our dependency. That's the whole magic of build systems.

On the other other hand, I also agree that just because we explicitly include the headers in the Odometryserver, that injects a hard dependency.... so it might be cleaner to explicitly put it there. My problem is with ROS-based build systems, that's if you put sophus on the package.xml and it's not in your system, then the build should fail. In contrast, KISS will fetch this at build time...

I'm puzzled about which is the best approach for this case. I will meditate and be back at this PR

ros/launch/odometry.launch.py Outdated Show resolved Hide resolved
ros/ros1/OdometryServer.hpp Outdated Show resolved Hide resolved
@nachovizzo
Copy link
Collaborator

@playertr would you mind updating this branch with the latest changes form the ros2 driver? Thanks!

And sorry for making you work twice :(

@playertr
Copy link
Contributor Author

@playertr would you mind updating this branch with the latest changes form the ros2 driver? Thanks!

And sorry for making you work twice :(

Sure, I'll rebase off of upstream/nacho/fix_ros_tf_tree_usage (not upstream/nacho/fix_ros_tf_tree_usage_clean).

@nachovizzo
Copy link
Collaborator

Merging this and finishing some bits at the big PR ;) Thanks a lot for the contribution!

@nachovizzo nachovizzo merged commit 8a46189 into PRBonn:nacho/fix_ros_tf_tree_usage Oct 20, 2023
tizianoGuadagnino added a commit that referenced this pull request Oct 27, 2023
* Fix TF tree usage in ROS 2 wrapper

Signed-off-by: Ignacio Vizzo <[email protected]>

* Transform the pose instead of the pointcloud

* remove include

* Remove default base_frame parameter value

This will make KISS-ICP work ego-centric as default

* Remove unused variable

* Do not reuse pose_msg.pose

* I'm not ever sure why we did that in first instance

* Be more explicit about the stamps and frame_id of the headers

* Extract publishing mechanism to a new function (#246)

* Convert class member function to more useful utility

And fix a small bug, the order was of the transformation before was the
opposite, and therefore we were obtaining base2cloud. Since we multiply
by both sides we can't really see the difference, but it was
conceptually wrong.

* Bring back debugging clouds to ros driver

* re-arange logic on when and when not to publish clouds

* fix lofic

* Update rviz2

* Loosing my mind already with this debugging info

* Backport tf multisensor fix (#245)

* Build system changes for tf fix

* Modify params for tf fix

* Add ROS 1 tf fixes similar to ROS 2

* Update rviz config

* Remove unused debug publishers

* Remove unnecessary smart pointers

* Update ROS 1 to match ROS 2 changes

* Fix style

* Remove sophus from build system

Fixing now the CI is a big pain

* Remove unnecessary alias

---------

Signed-off-by: Ignacio Vizzo <[email protected]>
Co-authored-by: Tim Player <[email protected]>
Co-authored-by: raw_t <[email protected]>
Co-authored-by: tizianoGuadagnino <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants