laboshinl / loam_velodyne

Laser Odometry and Mapping (Loam) is a realtime method for state estimation and mapping using a 3D lidar.
http://wiki.ros.org/loam_velodyne
Other
1.7k stars 956 forks source link

Error transforming odometry 'Odometry' from frame '/camera_init' to frame 'camera_init' #157

Open mberrey opened 4 years ago

mberrey commented 4 years ago

When trying to launch a pcap file or play a bag file, they begin processing on rviz but the error "Error transforming odometry 'Odometry' from frame '/camera_init' to frame 'camera_init'" occurs each tf, causing a skewed tf path and no pointcloud in rviz. Any tips/tricks on how to solve this? I was trying to look at the tf tree and rqt graph to troubleshoot, no luck though. Thanks.

mberrey commented 4 years ago

Could it be because of the broadcaster rate, seen below: frames.pdf

laurojljunior commented 3 years ago

Hi @mberrey how did you fix that? Thanks.

MontyTHall commented 3 years ago

@laurojljunior , yes, I'm in the same boat as you. @mberrey did you find a solution?

laurojljunior commented 3 years ago

Hey @MontyTHall. Seems that’s a problem with recent version of RViz. Just change the camera_init frame on rviz from /camera_init to //camera_init. That solved my problem.

MontyTHall commented 3 years ago

@laurojljunior great, I can see the odometry path. but I can't seem to see the point cloud. You get a point cloud?

wrotcat commented 3 years ago

@MontyTHall Hi, i got the same problem. Did you find a solution to get the point cloud?

MontyTHall commented 3 years ago

@wrotcat, no I still cannot see the point cloud.

wrotcat commented 3 years ago

@MontyTHall Hey. Maybe you could 'catkin_make' it again, and change /camera_init to //camera_init. I don't know what happened exactly but the point clouds work now.

JJBUT commented 3 years ago

I was having a problem visualizing the data in RVIZ in a branch my lab uses LeGO-LOAM. On the jack-devel branch you can see how I removed all of the forward slashes from the hard coded tf frames in a commit I made today. Rebuild after making those changes and it worked like a charm.

This may not be the best way to solve the problem, but as I understand it the ROS tf tree is moving away from the forward slash. I hope someone here could provide some more clarity on that or give a better solution to this problem then doing "//camera_init".

yshry commented 3 years ago

@MontyTHall I was in the same situation and by running 'catkin_make -DCMAKE_BUILD_TYPE=Release' solved my case. I forgot the option last time.

yqmy0814 commented 3 years ago

I tried to change "/camera_init" to "//camera_init" but it doesn't work, with terminal warning "Invalid argument "/camera_init" passed to canTransform argument target_frame in tf2 frame_ids cannot start with a '/' like:" However changing "/camera_init" to "camera_init" can solve this problem.

darshank528 commented 3 years ago

I tried to change "/camera_init" to "//camera_init" but it doesn't work, with terminal warning "Invalid argument "/camera_init" passed to canTransform argument target_frame in tf2 frame_ids cannot start with a '/' like:" However changing "/camera_init" to "camera_init" can solve this problem.

Hi yqmy0814, Can you please explain where do I have to go for making this change, in Rviz window only or some config file? I am getting the same error "Invalid argument "/camera_init" passed to canTransform argument target_frame in tf2 frame_ids cannot start with a '/' like:". Please help me out here.

clobot-noah commented 3 years ago

I tried to change "/camera_init" to "//camera_init" but it doesn't work, with terminal warning "Invalid argument "/camera_init" passed to canTransform argument target_frame in tf2 frame_ids cannot start with a '/' like:" However changing "/camera_init" to "camera_init" can solve this problem.

Hi yqmy0814, Can you please explain where do I have to go for making this change, in Rviz window only or some config file? I am getting the same error "Invalid argument "/camera_init" passed to canTransform argument target_frame in tf2 frame_ids cannot start with a '/' like:". Please help me out here.

You will try it. case 1) Change [Global Options] - [Fixed Frame] at the Displays tap of Rviz. Change "camera_init" to "//camera_init". but, when I tried case 1), you must be always tried it. case 2) Change the code. You search "/ into the loam code. you should change the code.(LaserMapping.cpp, LaserOdomertyr.cpp, TransformMaintenance.cpp) ex) LaserMapping.cpp - LaserMapping::LaserMapping(const float& scanPeriod, const size_t& maxIterations)
odomAftMapped.header.frame_id = "/camera_init"; --> odomAftMapped.header.frame_id = "camera_init";

ThakurSarveshGit commented 7 months ago

Hey @MontyTHall. Seems that’s a problem with recent version of RViz. Just change the camera_init frame on rviz from /camera_init to //camera_init. That solved my problem.

How to save cameras pose?