ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Darkmaster's profile - activity

2021-08-30 05:33:06 -0500 received badge  Nice Question (source)
2021-06-10 14:01:29 -0500 received badge  Nice Question (source)
2016-01-12 18:37:51 -0500 received badge  Favorite Question (source)
2014-03-07 01:01:01 -0500 received badge  Famous Question (source)
2013-02-18 21:38:48 -0500 received badge  Student (source)
2012-12-19 20:33:26 -0500 received badge  Taxonomist
2012-11-19 05:34:20 -0500 received badge  Notable Question (source)
2012-10-19 04:17:31 -0500 received badge  Famous Question (source)
2012-10-19 04:17:31 -0500 received badge  Popular Question (source)
2012-10-19 04:17:31 -0500 received badge  Notable Question (source)
2012-09-09 18:57:11 -0500 received badge  Notable Question (source)
2012-09-09 18:57:11 -0500 received badge  Popular Question (source)
2012-09-09 18:57:11 -0500 received badge  Famous Question (source)
2012-08-19 11:49:30 -0500 received badge  Popular Question (source)
2012-07-30 23:58:46 -0500 asked a question Roboearth increasing distance where objects are detected

Hello,

I'm using Roboearth on turtlebot to detect objects while robot is moving around the room. So far objects detection works quite well (it detects objects with no false positives etc.) the only "problem" is that it only detects them from distance around 1m in front of robot.

Is there any way of incresing this distance? Maybe lowering treshold (it is ok if I get few false positives). If this is possible how do I set this parameters? (I don't see any parameters at kinect detector).

2012-07-18 04:23:12 -0500 received badge  Scholar (source)
2012-07-18 03:15:43 -0500 commented question Custom global planner

I think I need to implement BaseGlobalPlanner. Can you point me more on what to do? I'm still a beginner.

2012-07-18 02:12:56 -0500 asked a question Custom global planner

Hello,

I would like to create my own global planner. So far I have created a simple path that should move robot for 0.5m to the left using "nav_msgs::Path mypath", and publish it to the "move_base/NavfnROS/plan" . The path is shown in the rviz, but robot doesn't start to move on it.

What am I missing? Or what would be the easiest way for me to "foward" my custom path to move_base (robot).

I only want to change global plan, I still want for local plan to work normally and avoid obstacles etc.

2012-07-18 00:09:03 -0500 received badge  Supporter (source)
2012-07-16 01:39:05 -0500 received badge  Editor (source)
2012-07-15 23:12:30 -0500 asked a question Ros map exploration (searching for some objects)

Hello, I'm trying to explore map (room) with turtlebot + kinect and search for some objects in it. So far I've done object detector and it works ok.

The problem now is how to explore map in some intelligent way (not just random movement). I've been searching for something that already exists in this way but the best I could find was exploration pack. If there is no such package how would be the easiest way for me to star build my own? I've used move_base goal in previous experiment to move turtlebot slalom between some comes, I suppose I could do something similar now but with whole room, but I don't think this is the best way. I've been thinking that if I have to use my own goals etc. the best thing would be to create whole global planner, but I don't have any idea on how to even start building it.

Can you please help me with some suggestions.

EDIT:

As I said I already have build working code for object recognition. I only need for robot to move through whole room, for it to see objects.

How would I make explore work with turtlebot? If I start turtlebot (bringup etc.) and load map using

roslaunch turtlebot_navigation amcl_demo.launch map_file:=/tmp/my_map.yaml

it just says

Done exploring with 0 goals left that could not be reached. There are 0 goals on our blacklist, and 0 of the frontier goals are too close to them to pursue. The rest had global planning fail to them.
Exploration finished. Hooray.

But does explore work with built map? As far as I understand explore pack is used to autonomously create map?