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

How to stream RGB and Depth at 30Hz simultaneously?

asked 2016-05-23 20:13:50 -0500

somebodyus gravatar image

updated 2016-05-23 20:15:22 -0500

How to stream RGB and Depth at 30Hz simultaneously?

I wrote two nodes which subscribe rgb and depth images. They can work at 30Hz when I run only one of the nodes. However, the performance reduces to 20Hz when I launched the two nodes together.

How to solve the problem? Note that the openni_launch publishes the rgb and depth images at 30Hz all the time.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2016-05-23 20:25:23 -0500

Hi,

Transferring two heavy raw streams of data (such as RGB and Depth) at 30Hz can be a big task for your CPU and that is probably why the performance drops to 20Hz. You can confirm this by launching your nodes and checking how much CPU is being consumed, it will likely be close to 100%.

If performance is an issue for you, implement your nodes as nodelets and register them into openni's nodelet manager to avoid the costly memory transfer between processes.

I hope this helps.

edit flag offensive delete link more

Comments

Thank you for answer. But I have a 16-core i7 CPU, it is so powerful that the CPU load is far from 100%. The subscribed images are written to SSD. Do you have any nodelets sample code? I am new to this area.

somebodyus gravatar image somebodyus  ( 2016-05-23 20:55:26 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2016-05-23 20:13:50 -0500

Seen: 133 times

Last updated: May 23 '16