ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | Q&A answers.ros.org |
2017-01-30 11:32:14 -0500 | received badge | ● Famous Question (source) |
2016-05-17 16:07:39 -0500 | received badge | ● Famous Question (source) |
2016-04-16 15:04:42 -0500 | received badge | ● Famous Question (source) |
2016-04-14 09:59:15 -0500 | received badge | ● Enlightened (source) |
2016-04-14 09:59:15 -0500 | received badge | ● Good Answer (source) |
2016-04-11 17:19:23 -0500 | commented answer | Combine position estimates from Lidar SLAM and PTAM Okay great there's lots to think about in there, thanks. I had heard of the pub_odometry parameter but not looked into it so will give that a look. Also just looked at the robot_localization package and it looks good. Cheers! |
2016-04-11 17:19:23 -0500 | received badge | ● Commentator |
2016-04-11 08:09:40 -0500 | received badge | ● Notable Question (source) |
2016-04-11 04:45:33 -0500 | received badge | ● Popular Question (source) |
2016-04-10 18:17:08 -0500 | commented question | Combine position estimates from Lidar SLAM and PTAM hector_slam is building up a map as it goes along and giving out that map and a pose estimate. The PTAM slam is working out increments I think as it gets its key points when it starts up and then goes from there, (it also uses control inputs for the drone for the pose estimate) |
2016-04-10 15:41:44 -0500 | received badge | ● Student (source) |
2016-04-10 15:20:37 -0500 | asked a question | Combine position estimates from Lidar SLAM and PTAM Hi all, I have an AR drone with a Lidar attached. I have hector_slam running giving out a position estimate for the drone which is working fine. I also have a PTAM node running which is also spitting out a position estimate. What is the best way to combine these position estimates to give a best guess for the location of the drone? |
2016-04-09 05:03:04 -0500 | commented answer | Hector mapping not creating map Ah nice, thanks |
2016-04-09 05:01:10 -0500 | received badge | ● Scholar (source) |
2016-04-08 15:08:05 -0500 | received badge | ● Nice Answer (source) |
2016-04-08 06:46:32 -0500 | received badge | ● Self-Learner (source) |
2016-04-08 06:46:32 -0500 | received badge | ● Teacher (source) |
2016-04-08 05:41:48 -0500 | commented question | Hector mapping not creating map I've added it, but says I need >10 points to accept my own answer |
2016-04-08 05:40:46 -0500 | answered a question | Hector mapping not creating map Turns out the drivers I was using on the AR drone were giving out millimetres instead of the meters that LaserScan is expecting. After dividing the output by 1000, I get a map and pose as expected. Thank you to DavidN for pointing it out |
2016-04-07 21:28:24 -0500 | received badge | ● Notable Question (source) |
2016-04-07 15:41:01 -0500 | commented question | Hector mapping not creating map Don't know how to mark this as answered either as these are only comments to the original question |
2016-04-07 15:39:28 -0500 | commented question | Hector mapping not creating map Yes that was it! The numbers were in millimetres instead of meters. Thanks for the pointer |
2016-04-07 09:21:29 -0500 | commented question | Hector mapping not creating map I cannot visualise with rviz, it counts up the messages coming in so is definitely receiving them. Very true, when I run it with the actual drivers all the numbers are much smaller. I will check the code and post back |
2016-04-07 05:47:07 -0500 | received badge | ● Enthusiast |
2016-04-06 03:37:01 -0500 | received badge | ● Popular Question (source) |
2016-04-06 03:06:06 -0500 | commented question | Hector mapping not creating map Knew I'd forgotten something! Added launch file and he publishing node |
2016-04-06 03:05:32 -0500 | received badge | ● Editor (source) |
2016-04-05 16:04:06 -0500 | asked a question | Hector mapping not creating map Hi, I have a LIDAR connected to an AR drone, with drivers running on the drone to read the laser data, and send it to my ros master computer using netcat. I have written a ros driver in python that listens to the network and reads the incoming laser data, creates a LaserScan message, populates all the fields and then publishes this to /scan. I can see /scan in rostopic list, and can see populated messages in rostopic echo /scan. However when I run my launch file which runs hector_mapping, no map is created. I know the launch file works as I have tested it with the LIDAR connected directly to the master computer using the official drivers and it builds a map fine. So I think there must be a problem when I populate the LaserScan message and publish it. I have included one of my populated messages below, can anyone see anything wrong with it or suggest something else which I can try? I have noticed the seq fields in the header are always 0 but have read I shouldn't set that myself and leave ros to deal with it. The angle_min and angle_max fields are meant to be like that (at least that is what the official driver spits out) I have also tried 0 to 2*pi Launch file: (more) |
2016-03-17 05:30:27 -0500 | received badge | ● Notable Question (source) |
2016-03-16 16:00:53 -0500 | commented answer | Convert network Lidar data to LaserScan Is there a way to listen to stdin in ROS or somehow otherwise pipe into a node, so that I can let netcat deal with receiving the data and just let the node convert it into the LaserScan format? |
2016-03-16 14:41:04 -0500 | commented answer | Convert network Lidar data to LaserScan Great, thanks for the info. Will give that a read |
2016-03-16 05:36:32 -0500 | received badge | ● Popular Question (source) |
2016-03-15 12:54:14 -0500 | asked a question | Convert network Lidar data to LaserScan Hi there! I am trying to stream data back from my Parrot AR Drone 2.0, which has a LIDAR attached, to my PC (which has ROS running) in order to run Hector Slam. I currently have code running on the quad which is reading the Lidar (connected to the USB port on the quad) data and streaming this to my PC using netcat. This is all working well and I can see the data coming in on my desktop. I now need a way to listen to this data and convert it into the LaserScan messages that Hector Slam uses. I am very new to ROS and although have learnt a lot already, I do not know how to do this and can't seem to find any similar posts made here. I may well just be searching for the wrong things but any help would be greatly appreciated! Cheers, Andy PC - Ubuntu 14.04 AR Drone - BusyBox I think |