stereolabs / zed-ros-wrapper

ROS wrapper for the ZED SDK
https://www.stereolabs.com/docs/ros/
MIT License
447 stars 391 forks source link

How can `zed_wrapper` publish depth image only? #846

Closed Z-Jeff closed 2 years ago

Z-Jeff commented 2 years ago

Preliminary Checks

Proposal

How can zed_wrapper publish depth image only? I want to decrease the bandwidth by shutting down unnecessary topics like stereo image. I think there should be some configurations, but not find something.

Use-Case

No response

Anything else?

No response

Myzhar commented 2 years ago

Hi @Z-Jeff if you need only depth information, simply subscribe to depth topics. Not subscribed topics are not published (only advertised) and they do not take communication bandwidth.

Z-Jeff commented 2 years ago

Thanks