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
If some odometry topics are published faster than sensor data, we could miss reset events or large covariances. Note that this would not happen with the multi-threaded version (#1214) if the sensor rate is in sync with odometry rate (like when we use visual odometry or icp odometry).
I tested decoupling odometry to its own callback so we don't miss any messages, though it makes it harder to "wait for odom tropic" if we receive sensor data faster than odometry delay. The current message_filters approach already solve that. Another drawback was for rtabmap_viz when we want to synchronize odometry info topic with the same sensor data generating that odom (to correctly overlay detected features on same image they were generated). Again, the message_filters approach solves that already.
Similar to inter_odom callback, we could look in parallel with a dedicated callback to just detect those reset events and appropriately not miss any covariance.
The text was updated successfully, but these errors were encountered:
If some odometry topics are published faster than sensor data, we could miss reset events or large covariances. Note that this would not happen with the multi-threaded version (#1214) if the sensor rate is in sync with odometry rate (like when we use visual odometry or icp odometry).
I tested decoupling odometry to its own callback so we don't miss any messages, though it makes it harder to "wait for odom tropic" if we receive sensor data faster than odometry delay. The current message_filters approach already solve that. Another drawback was for rtabmap_viz when we want to synchronize odometry info topic with the same sensor data generating that odom (to correctly overlay detected features on same image they were generated). Again, the message_filters approach solves that already.
Similar to inter_odom callback, we could look in parallel with a dedicated callback to just detect those reset events and appropriately not miss any covariance.
The text was updated successfully, but these errors were encountered: