-
Notifications
You must be signed in to change notification settings - Fork 91
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
track_odometry: synchronize Odometry and IMU #363
Conversation
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
[#1000] PASSED on kineticAll tests passed
[#1000] PASSED on melodicAll tests passed
|
Codecov Report
@@ Coverage Diff @@
## master #363 +/- ##
==========================================
- Coverage 73.77% 73.64% -0.13%
==========================================
Files 56 56
Lines 4114 4128 +14
==========================================
+ Hits 3035 3040 +5
- Misses 1079 1088 +9
Continue to review full report at Codecov.
|
[#1001] PASSED on kineticAll tests passed
[#1001] PASSED on melodicAll tests passed
|
@DaikiMaekawa please take a look |
@@ -79,10 +83,17 @@ geometry_msgs::Vector3 toVector3(const Eigen::Vector3f& a) | |||
class TrackOdometryNode | |||
{ | |||
private: | |||
using SyncPolicy = | |||
message_filters::sync_policies::ApproximateTime<nav_msgs::Odometry, sensor_msgs::Imu>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the approximate synchronization OK for Odometry and IMU?
Interpolation would be the option as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree that interpolation is better, but it requires additional implementation. (Is interpolation provided by message_filter?)
ApproximateTime is better than master branch, anyway.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is interpolation provided by message_filter?
No, I don't think so.
ApproximateTime is better than master branch, anyway.
Right. I'm OK to merge the PR if you want.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@at-wat Can you open an Issue regarding to the interpolation?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added to #358
for #358