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

gilmour's profile - activity

2014-10-31 18:22:37 -0500 received badge  Famous Question (source)
2014-10-13 19:49:56 -0500 received badge  Notable Question (source)
2014-10-13 16:39:06 -0500 commented answer RGB and depth image to point cloud data

Thanks a lot for the pointers. There were two issues : even though I was not explicitly modifying the time-stamp, when I use CV-bridge, it overwrites the original time stamp values. So, I had to manually assign them again. And increasing the queue size helped too.

2014-10-13 16:37:13 -0500 received badge  Scholar (source)
2014-10-13 12:46:06 -0500 received badge  Student (source)
2014-10-13 10:30:00 -0500 received badge  Popular Question (source)
2014-10-10 11:36:15 -0500 asked a question RGB and depth image to point cloud data

My System : Ubuntu 12.04, ROS Fuerte, Python

Goal: Want to combine rgb and depth image to point cloud data. I am using depth_image_proc/point_cloud_xyzrgb nodelet to achieve this. Just to test it, I used the kinect topics depth_registered/image_rect, rgb/image_rect_color, and rgb/camera_info and it works (I can visualize it in RViZ).

Now, the issue is, I subscribe the kinect topic rgb/image_rect_color and use Python OpenCV to change some pixel colors and publish it back as a new topic. When I use depth_image_proc/point_cloud_xyzrgb with this new topic and try to get a point cloud from the new rgb image and original depth image, it does not output anything. I can view the changed image from the new topic in RViZ but the point cloud is not generated.

To test it further with a simpler problem, I just subscribe to the rgb/image_rect_color, do no processing at all, and publish the same image with a different topic name. Still, it does not work. Is this a time synchronization issue. Any pointers will be helpful.

Thanks -gilmour