-
Notifications
You must be signed in to change notification settings - Fork 432
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
"odom" passed to lookupTransform argument target_frame does not exist. #194
Comments
The imu_filter_madgwick shouldn't publish the
The graph TD;
IMU-driver -->|/imu/data_raw| imu_filter_madgwick;
imu_filter_madgwick -->|/imu/data| robot_localization;
your-robot-driver -->|/odom| robot_localization;
robot_localization --> |tf-transform| hector_mapping;
... where the |
okay I just tried this approach you can see the graph below, but there is still some problem. i have used the here i am providing the static publisher launch file.
i am pretty sure that there is something wrong. that is why I am getting drift on map while moving a bit or rotate the handheld device these are my topics
Also you can check my tree |
So if you look at the hector_mapping documentation, you'll see the following: Required tf Transforms
... and:
So it looks like in your case, you'll need the Also, I don't see any option in Anyway, this discussion has nothing to do with Good luck! |
I am using
Ros Noetic on Ubuntu 20.04 LTS
and I installed this library for integration of IMU (
mpu6050_driver
) with Hector SLAM.basically as you know mpu6050_driver provides
/imu/raw/data
so I need to filter this using madgwick filter,so here is the steps I am taking
roscore
roslaunch rplidar_ros rplidar_a1.launch
roslaunch hector_slam_launch tutorial.launch
rosrun imu_filter_madgwick imu_filter_node _use_mag:=false
also my rostopics are
output of /imu/data
and i want to change the
frame id
of/imu/data
asimu_link
because the frame id's are same for/imu/data_raw
also so that it cannot create any buzz in the futurealso, you can check my tf graph
and Finally here is the output of the madgwick command
rosrun imu_filter_madgwick imu_filter_node _use_mag:=false
if you need any clarification please reply soon,
i need help here
The text was updated successfully, but these errors were encountered: