Searching in map
Hello,
How can i search for specific object in map that has been built using rviz ? Can I use a specific algorithm? or can I do this using rviz?
any help?
thanks in advance
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
Hello,
How can i search for specific object in map that has been built using rviz ? Can I use a specific algorithm? or can I do this using rviz?
any help?
thanks in advance
You should probably read up on some basic concepts regarding rviz, gmapping and generally "how stuff in ROS works :)" (the tutorials are a good start).
Rviz is the ROS Visualizer and mainly is useful for visualizing the robot and environment state. It does neither build maps, nor does it provide algorithms for searching for objects in them. It just allows you to visualize the map it receives from somewhere else (for example gmapping).
That being said, I am not aware of a existing approach that performs some kind of object recognition on occupancy grid maps (if that is what you require).
That sounds completely different to your original question :) For navigation inside a map you can use the navigation stack. To automatically explore an environment you can have a look at the exploration stack or the hector_exploration_planner
If you want your robot to navigate in that map, you can use the navigation stack. If you have a walking robot, that complicates things though, as the navigation stack is originally intended to be used with wheeled robots.
There is no simple solution. We need to write a new code which contains:
Visual recognition of the object (e.g. juice, book) that the robot tries to recognize. This may be the most difficult part and I am still not sure which libraries are the most suitable. Perhaps RoboEarth detector?
Navigation implementation (not by rviz but directly from the code) which calls gmapping, acml, move_base, etc.
Main: the strategy designed by you (e.g. circulate the room according to a particular trajectory; when it sees the book then turns right, etc.) Alternatively you may try Exploration stack.
Actually I am trying to do the same thing. Perhaps we can help each other :-)
Asked: 2013-03-21 01:50:17 -0600
Seen: 462 times
Last updated: Mar 22 '13