-
|
Is there a tf2 implementation for ros2_rust? or has it been implemented on a separate package? I'm new to this so I'm not sure if the transform library comes with RCL? If it does. Does it have rust bindings? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 10 replies
-
|
@DS3a thanks for your interest in |
Beta Was this translation helpful? Give feedback.
-
|
Hello, any update on tf2 for ros2_rust? already deep into implementation with ros2_rust but now realizing we will also need tf2_msgs and can't find it anywhere! any pointer very appreciated (just need the message definition actually) |
Beta Was this translation helpful? Give feedback.
-
|
Hello everyone! I took a crack at what @esteve suggested and this is what I came up with: https://github.com/olingo99/tf2_rs The basic idea is to expose the tf2 C++ BufferCore via cxx and then build a more idiomatic Rust wrapper on top. It’s still early-stage, but it already supports a local buffer + listener and basic lookup_transform / can_transform usage. I’m posting it here to make the work public and get feedback from the community before going further: Feel free to recommend changes. |
Beta Was this translation helpful? Give feedback.
@DS3a thanks for your interest in
ros2-rust! At the moment, there's no tf2 package forros2-rust, a straightforward version could just wrap the existing C++ implementation in Rust. Would you like to contribute one? We'd be very happy to help you with it.