path_planning icon indicating copy to clipboard operation
path_planning copied to clipboard

Aleady have a otcomap, How can I use adjust this project?

Open ElderWanng opened this issue 5 years ago • 2 comments

Hey there! Thank you for your awesome project! Recently I've built a SLAM system with stereo camera. ( I didn't use RGBD camera ) My project can out put a global octomap or points cloud incrementally, sample like this, after drone flying around the building, the VOXEL can be seen in the RVIZ.

NOW I wanna use your project to implement a avoidance function, I use VIO to estimate pose and send them to PX4 by /mavros/vision_pose/pose, and I stitch points cloud generated by stereo camera to build a global map. ( For the moment let us assume that called /map_out ) Can you show more hint? Which topics or action in path_planning I should subscribe to, publish to or modify the topic name?

ElderWanng avatar Apr 27 '19 13:04 ElderWanng

The reconstruction looks quite good!

Regarding the explanation please take a look at this issue . In summary, you need to create an octomap and provide it to "/octomap_binary" topic and your odometry to "/bebop2/odometry_sensor1/odometry" topic. The goal point needs to be published to /clicked_point topic while you will receive the waypoints from RRT* at topic "waypoints" and minimum jerk trajectory at "/bebop2/command/trajectory". You can use RViz to visualize everything. I also publish trajectory markers so it will look like this

ayushgaud avatar May 04 '19 06:05 ayushgaud

Hi Ayush, I really liked your work. I am working on building a system which can guide a visually impaired human to navigate through indoor conditions. I have generated a point cloud using ORBSlam2 and converted it into octomap. I am planning to use your implementation for the same. Can you give your inputs on it? I'm also planning to use Navigation Package of ROS but it requires 2D map which I think will work but I need to get the location of the objects like doors, stairs, etc which I may not get in 2D map. What are your suggestions?

yashagarwal9 avatar May 30 '19 02:05 yashagarwal9