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

bkx's profile - activity

2014-12-05 05:43:08 -0500 received badge  Good Answer (source)
2014-08-11 14:14:33 -0500 received badge  Nice Answer (source)
2014-01-28 17:24:59 -0500 marked best answer Help with people, people_experimental stacks

Hi,

I am trying to do leg detection with LIDAR, and the leg_detector node from people_experimental looks perfect for the job. The only problem is that I cannot find any documentation on how to use it, and so far my attempts have failed.

Here is a wiki page introducing the leg_detector node. This page has a broken link, http://home.willowgarage.com/wgwiki/Leg_Detection which supposedly has documentation.

I would greatly appreciate if anyone could share their experiences with the stack, or point me to the the right documentation :)

2014-01-28 17:23:38 -0500 marked best answer Updating OpenNI and NITE version

I'm using the Kinect for person tracking, and I have encountered a bug where OpenNI causes a segmentation fault when many objects move in/out of the frame. I did some research and it looks like the bug (below) was fixed in a newer version of OpenNI/NITE.

Program received signal SIGSEGV, Segmentation fault.
0x00007fffe23b374d in Segmentation::checkOcclusion(int, int, int, int) () from /usr/lib/libXnVFeatures.so
(gdb)

My question is, how can I safely update OpenNI to the latest version to work within the ROS framework?

Thanks for the help!

2014-01-28 17:23:37 -0500 marked best answer openni tracker not producing any output

I am trying to run the openni_tracker node to duplicate the results from the wiki http://www.ros.org/wiki/openni_tracker although the openni_tracker node just isn't producing any output. Here is a log from running openni_tracker (openni_tracker.xml set to log info-level messages to screen.) It looks like openni_tracker is detecting users, but it is not publishing any data or displaying any images. rostopic -list just returns /rosout and /rossout_agg.

I have visualized Kinect point cloud data in rviz with openni_launch, so I doubt that this is a hardware problem. Does anyone have ideas on why openni_tracker is not publishing any data? I'd really appreciate any help in figuring this out!

2013-09-25 10:51:09 -0500 marked best answer Best practices: checking a path with Costmap2DROS

Hi,

I have a populated Costmap2DROS object and a vector of poses which make up the robot's path. I need to verify that on every pose, the robot is not in collision.

It should be sufficient to check whether the pose lies within the robot's inscribed radius, although if the computational load is light enough I could check the robot's footprint.

What are the best practices for doing this with a Costmap2DROS? I have found that I can make a copy of the underlying costmap, but this seems inefficient.

Thanks!

2013-08-12 14:41:58 -0500 received badge  Taxonomist
2013-02-25 23:47:49 -0500 received badge  Popular Question (source)
2013-02-25 23:47:49 -0500 received badge  Notable Question (source)
2013-02-25 23:47:49 -0500 received badge  Famous Question (source)
2012-11-29 08:13:58 -0500 received badge  Famous Question (source)
2012-11-29 08:13:58 -0500 received badge  Notable Question (source)
2012-11-29 08:13:58 -0500 received badge  Popular Question (source)
2012-10-31 00:24:08 -0500 received badge  Popular Question (source)
2012-10-31 00:24:08 -0500 received badge  Famous Question (source)
2012-10-31 00:24:08 -0500 received badge  Notable Question (source)
2012-10-10 00:19:44 -0500 received badge  Famous Question (source)
2012-10-10 00:19:44 -0500 received badge  Popular Question (source)
2012-10-10 00:19:44 -0500 received badge  Notable Question (source)
2012-08-31 05:29:20 -0500 received badge  Famous Question (source)
2012-08-31 05:29:20 -0500 received badge  Notable Question (source)
2012-08-22 07:59:38 -0500 received badge  Notable Question (source)
2012-08-22 07:59:38 -0500 received badge  Famous Question (source)
2012-08-19 19:42:03 -0500 received badge  Famous Question (source)
2012-08-01 16:44:28 -0500 received badge  Popular Question (source)
2012-07-11 07:36:52 -0500 received badge  Popular Question (source)
2012-06-29 07:24:06 -0500 received badge  Nice Question (source)
2012-05-14 17:20:36 -0500 received badge  Notable Question (source)
2012-04-22 09:26:44 -0500 commented question Setting calibration for openni Kinect - running into max value

Resolved by editing and recompiling openni_camera.

2012-04-15 15:29:25 -0500 asked a question rosmake gets stuck occasionally

I'm having a problem where rosmake intermittently freezes, and the terminal becomes unresponsive. I can't find any pattern to when this happens, although the last thing shown is always

[ rosmake ] Checking rosdeps compliance for packages motion_tests.  This may take a few seconds.                                                                                                                    
[ rosmake ] rosdep check passed all system dependencies in packages

Any ideas on what could be wrong?

2012-04-13 11:34:08 -0500 asked a question Bug in ROS_INFO_STREAM?

I have a stringstream that I'm using to store some debug information. Every so often, I try to print it out. I have found that

string s = ss.str();
ROS_INFO_STREAM(s);

works just as expected, the contents of ss are displayed in a message. But an operation that I feel should be identical,

ROS_INFO_STREAM( (ss.str()) );

results in nothing at all being displayed, except of course the usual ROS_INFO header "[ INFO]..."

Any ideas on why this could be?

2012-04-11 03:12:31 -0500 received badge  Popular Question (source)
2012-03-30 13:35:15 -0500 asked a question Setting calibration for openni Kinect - running into max value

I'm trying to calibrate my Kinect so that the RGB and depth data overlap. I am running openni_launch and using dynamic_reconfigure_gui to tweak the values.

I have a good value for depth_ir_offset_x (-1.8) but the maximum value for depth_ir_offset_y (10) is insufficient. It looks like depth_ir_offset_y=20 would be ideal, although I am limited to 10.

Any ideas on how to break this limit? Also, should I submit this as a bug?

2012-03-28 05:01:30 -0500 commented answer Know if you are dropping messages from a subscriber queue?

Checking the header field could work if you have only one publisher, but breaks down if more than one node is publishing messages on a topic.